Updated for Joshua 6
diff --git a/6.0/faq.md b/6.0/faq.md
new file mode 100644
index 0000000..dd02acc
--- /dev/null
+++ b/6.0/faq.md
@@ -0,0 +1,45 @@
+---
+layout: default6
+category: help
+title: Frequently Asked Questions
+---
+
+Solutions to common problems will be posted here as we become aware of
+them.  If you need help with something, please check
+[our support group](https://groups.google.com/forum/#!forum/joshua_support)
+for a solution, or
+[post a new question](https://groups.google.com/forum/#!newtopic/joshua_support).
+
+### You get a message stating: "no ken in java.library.path"
+
+This occurs when [KenLM](https://kheafield.com/code/kenlm/) failed to
+build. This can occur for a number of reasons:
+   
+- [Boost](http://www.boost.org/) isn't installed. Boost is
+  available through most package management tools, so try that
+  first. You can also build it from source.
+
+- Boost is installed, but not in your path. The easiest solution is
+  to add the boost library directory to your `$LD_LIBRARY_PATH`
+  environment variable. You can also edit the file
+  `$JOSHUA/src/joshua/decoder/ff/lm/kenlm/Makefile` and define
+  `BOOST_ROOT` to point to your boost location. Then rebuild KenLM
+  with the command
+  
+      ant -f $JOSHUA/build.xml kenlm
+
+- You have run into boost's weird naming of multi-threaded
+  libraries. For some reason, boost libraries sometimes have a
+  `-mt` extension applied when they are built with multi-threaded
+  support. This will cause the linker to fail, since it is looking
+  for, e.g., `-lboost_system` instead of `-lboost_system-mt`. Edit
+  the same Makefile as above and uncomment the `BOOST_MT = -mt`
+  line, then try to compile again with
+  
+      ant -f $JOSHUA.build.xml kenlm
+
+You may find the following reference URLs to be useful.
+
+    https://groups.google.com/forum/#!topic/joshua_support/SiGO41tkpsw
+    http://stackoverflow.com/questions/12583080/c-library-in-using-boost-library
+
diff --git a/6.0/install.md b/6.0/install.md
new file mode 100644
index 0000000..f6165e5
--- /dev/null
+++ b/6.0/install.md
@@ -0,0 +1,70 @@
+---
+layout: default6
+title: Installation
+---
+
+### Download and install
+
+To use Joshua as a standalone decoder (with
+[language packs](/language-packs/)), you only need to download and
+install the decoder. There are no external dependencies.
+
+1. Download Joshua
+
+       curl -#L http://joshua-decoder.org/releases/6.0 > joshua-v6.0.tgz
+
+1. Next, unpack it, set environment variables, and compile everything. You need to define the
+`$JOSHUA` environment variable (which in turn requires `$JAVA_HOME`).
+
+       tar xzf joshua-v6.0.tgz
+       cd joshua-v6.0
+
+       # for bash
+       export JAVA_HOME=/path/to/java
+       export JOSHUA=$(pwd)
+       echo "export JOSHUA=$JOSHUA" >> ~/.bashrc
+       
+       # build everything
+       ant
+
+   (If you don't know what to set `$JAVA_HOME` to, try `/usr/java/default`).
+   
+   This compiles Joshua and also a number of support tools, such as KenLM and GIZA++.
+
+1. [Download a model](/language-packes/) and start translating!
+
+### Building new models
+
+If you wish to build models for new language pairs from existing data
+(such as the [WMT data](http://statmt.org/wmt14/)), you need to
+install some additional dependencies.
+
+1. For learning hierarchical models, Joshua includes a tool called [Thrax](/6.0/thrax.html), which
+is built on Hadoop. If you have a Hadoop installation, make sure that the environment variable
+`$HADOOP` is set and points to it. If you don't, Joshua will roll one out for you in standalone
+mode. Hadoop is only needed if you plan to build new models with Joshua.
+
+1. You will need to install Moses if either of the following applies to you:
+
+    - You wish to build [phrase-based models](/6.0/phrase.html) (Joshua 6.0 includes a phrase-based
+      decoder, but not the tools for building such a model)
+
+    - You are building your own models (phrase- or syntax-based) and wish to use Cherry & Foster's
+[batch MIRA tuner](http://aclweb.org/anthology-new/N/N12/N12-1047v2.pdf) instead of the included
+MERT implementation, [Z-MERT](/6.0/zmert.html). 
+
+    Follow [the instructions for installing Moses
+here](http://www.statmt.org/moses/?n=Development.GetStarted), and then define the `$MOSES`
+environment variable to point to the root of the Moses installation.
+
+## More information
+
+For more detail on the decoder itself, including its command-line options, see
+[the Joshua decoder page](decoder.html).  You can also learn more about other steps of
+[the Joshua MT pipeline](pipeline.html), including [grammar extraction](thrax.html) with Thrax and
+Joshua's [efficient grammar representation](packing.html).
+
+If you have problems or issues, you might find some help [on our answers page](faq.html) or
+[in the mailing list archives](https://groups.google.com/forum/?fromgroups#!forum/joshua_support).
+
+A [bundled configuration](bundle.html), which is a minimal set of configuration, resource, and script files, can be created and easily transferred and shared.
diff --git a/6.0/quick-start.md b/6.0/quick-start.md
new file mode 100644
index 0000000..36630c2
--- /dev/null
+++ b/6.0/quick-start.md
@@ -0,0 +1,48 @@
+---
+layout: default6
+title: Quick Start
+---
+
+The quickest way to use Joshua is to download a
+[pre-built model](/6.0/models.html) and use them to start translating data.
+
+Building your own models takes a bit more work, and requires you to
+supply parallel data that the models can be trained from. Information
+about how to do this can be found in [the pipeline documentation](/6.0/pipeline.html).
+
+Our pipeline.html">pipeline script</a> is the quickest way to get started. For example, to
+train and test a complete model translating from Bengali to English:
+
+First, download the Indian languages data:
+   
+   curl -#L https://github.com/joshua-decoder/indian-parallel-corpora/tarball/master > indian-languages.tgz
+    tar xf indian-languages.tgz
+    ln -s joshua-decoder-indian-parallel-corpora-b71d31a input
+
+Then, train and test a model
+
+    $JOSHUA/bin/pipeline.pl --source bn --target en \
+        --no-prepare --aligner berkeley \
+        --corpus input/bn-en/tok/training.bn-en \
+        --tune input/bn-en/tok/dev.bn-en \
+        --test input/bn-en/tok/devtest.bn-en
+
+This will align the data with the Berkeley aligner, build a Hiero model, tune with MERT, decode the
+test sets, and reports results that should correspond with what you find on <a
+href="/indian-parallel-corpora/">the Indian Parallel Corpora page</a>. For
+more details, including information on the many options available with the pipeline script, please
+see <a href="pipeline.html">its documentation page</a>.
+
+## More information
+
+For more detail on the decoder itself, including its command-line options, see
+[the Joshua decoder page](decoder.html).  You can also learn more about other steps of
+[the Joshua MT pipeline](pipeline.html), including [grammar extraction](thrax.html) with Thrax and
+Joshua's [efficient grammar representation](packing.html).
+
+If you have problems or issues, you might find some help [on our answers page](faq.html) or
+[in the mailing list archives](https://groups.google.com/forum/?fromgroups#!forum/joshua_support).
+
+A [bundled configuration](bundle.html), which is a minimal set of
+configuration, resource, and script files, can be created and easily
+transferred and shared. (This is what we use to distribute pre-built models).
diff --git a/6.0/whats-new.md b/6.0/whats-new.md
new file mode 100644
index 0000000..c145fd5
--- /dev/null
+++ b/6.0/whats-new.md
@@ -0,0 +1,12 @@
+---
+layout: default6
+title: What's New
+---
+
+Joshua 6.0 introduces a number of new features and improvements.
+
+- A new phrase-based decoder that is as fast as Moses
+- Significantly faster hierarchical decoding
+- Support for class-based language modeling
+- Reflection-based loading of feature functions for super-easy
+  development of new features
diff --git a/_layouts/default6.html b/_layouts/default6.html
new file mode 100644
index 0000000..6d06dbc
--- /dev/null
+++ b/_layouts/default6.html
@@ -0,0 +1,186 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <meta name="description" content="">
+    <meta name="author" content="">
+    <link rel="icon" href="../../favicon.ico">
+
+    <title>Joshua Documentation | {{ page.title }}</title>
+
+    <!-- Bootstrap core CSS -->
+    <link href="/dist/css/bootstrap.min.css" rel="stylesheet">
+
+    <!-- Custom styles for this template -->
+    <link href="/joshua6.css" rel="stylesheet">
+  </head>
+
+  <body>
+
+    <div class="blog-masthead">
+      <div class="container">
+        <nav class="blog-nav">
+          <!-- <a class="blog-nav-item active" href="#">Joshua</a> -->
+          <a class="blog-nav-item" href="/">Joshua</a>
+          <!-- <a class="blog-nav-item" href="/6.0/whats-new.html">New features</a> -->
+          <a class="blog-nav-item" href="/language-packs/">Language packs</a>
+          <a class="blog-nav-item" href="/data/">Datasets</a>
+          <a class="blog-nav-item" href="/contributors.html">Contributors</a>
+        </nav>
+      </div>
+    </div>
+
+    <div class="container">
+
+      <!-- <div class="blog-header"> -->
+      <!--   <h1 class="blog-title">Joshua</h1> -->
+      <!--   <\!-- <p class="lead blog-description">The Joshua machine translation system</p> -\-> -->
+      <!-- </div> -->
+
+      <div class="row">
+
+        <div class="col-sm-2">
+          <div class="sidebar-module">
+            <!-- <h4>About</h4> -->
+            <center>
+            <img src="/images/joshua-logo-small.png" />
+            <p>Joshua machine translation toolkit</p>
+            </center>
+          </div>
+          <hr>
+          <center>
+            <a href="/releases/6.0/" target="_blank"><button class="button">Download Joshua 6.0</button></a>
+            <p>Released Feb. 4, 2015</p>
+          </center>
+          <hr>
+          <!-- <div class="sidebar-module"> -->
+          <!--   <span id="download"> -->
+          <!--     <a href="http://joshua-decoder.org/downloads/joshua-6.0.tgz">Download</a> -->
+          <!--   </span> -->
+          <!-- </div> -->
+          <div class="sidebar-module">
+            <h4>Using Joshua</h4>
+            <ol class="list-unstyled">
+              <li><a href="/6.0/install.html">Installation</a></li>
+              <li><a href="/6.0/quick-start.html">Quick Start</a></li>
+              <li><a href="/6.0/faq.html">FAQ</a></li>
+            </ol>
+          </div>
+          <hr>
+          <div class="sidebar-module">
+            <h4>Building new models</h4>
+            <ol class="list-unstyled">
+              <li><a href="/6.0/pipeline.html">Pipeline</a></li>
+              <li><a href="/6.0/faq.html">FAQ</a></li>
+            </ol>
+          </div>
+          <div class="sidebar-module">
+            <h4>Phrase-based</h4>
+            <ol class="list-unstyled">
+              <li><a href="phrase.html">Training</a></li>
+            </ol>
+          </div>
+          <hr>
+          <div class="sidebar-module">
+            <h4>Advanced</h4>
+            <ol class="list-unstyled">
+              <li><a href="decoder.html">Decoder options</a></li>
+              <li><a href="file-formats.html">File formats</a></li>
+            </ol>
+          </div>
+        </div><!-- /.blog-sidebar -->
+
+        {% if page.twitter %}
+        <div class="col-sm-6 blog-main">
+        {% else %}
+        <div class="col-sm-8 blog-main">
+        {% endif %}
+
+          <div class="blog-title">
+            <h2>{{ page.title }}</h2>
+          </div>
+          
+          <div class="blog-post">
+
+            {{ content }}
+
+          <!--   <h4 class="blog-post-title">Welcome to Joshua!</h4> -->
+
+          <!--   <p>This blog post shows a few different types of content that's supported and styled with Bootstrap. Basic typography, images, and code are all supported.</p> -->
+          <!--   <hr> -->
+          <!--   <p>Cum sociis natoque penatibus et magnis <a href="#">dis parturient montes</a>, nascetur ridiculus mus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.</p> -->
+          <!--   <blockquote> -->
+          <!--     <p>Curabitur blandit tempus porttitor. <strong>Nullam quis risus eget urna mollis</strong> ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> -->
+          <!--   </blockquote> -->
+          <!--   <p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.</p> -->
+          <!--   <h2>Heading</h2> -->
+          <!--   <p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</p> -->
+          <!--   <h3>Sub-heading</h3> -->
+          <!--   <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p> -->
+          <!--   <pre><code>Example code block</code></pre> -->
+          <!--   <p>Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.</p> -->
+          <!--   <h3>Sub-heading</h3> -->
+          <!--   <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p> -->
+          <!--   <ul> -->
+          <!--     <li>Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</li> -->
+          <!--     <li>Donec id elit non mi porta gravida at eget metus.</li> -->
+          <!--     <li>Nulla vitae elit libero, a pharetra augue.</li> -->
+          <!--   </ul> -->
+          <!--   <p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p> -->
+          <!--   <ol> -->
+          <!--     <li>Vestibulum id ligula porta felis euismod semper.</li> -->
+          <!--     <li>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</li> -->
+          <!--     <li>Maecenas sed diam eget risus varius blandit sit amet non magna.</li> -->
+          <!--   </ol> -->
+          <!--   <p>Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.</p> -->
+          <!-- </div><\!-- /.blog-post -\-> -->
+
+        </div>
+
+      </div><!-- /.row -->
+
+      {% if page.twitter %}
+      <div style="col-sm-3">
+        <div class="twitter">
+          <a class="twitter-timeline" href="https://twitter.com/joshuadecoder" data-widget-id="367380700124569600">Tweets by @joshuadecoder</a>
+          <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
+        </div>
+      </div>
+      {% endif %}
+        
+    </div><!-- /.container -->
+
+    <!-- Bootstrap core JavaScript
+    ================================================== -->
+    <!-- Placed at the end of the document so the pages load faster -->
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
+    <script src="../../dist/js/bootstrap.min.js"></script>
+    <!-- <script src="../../assets/js/docs.min.js"></script> -->
+    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
+    <!-- <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
+    -->
+
+    <!-- Start of StatCounter Code for Default Guide -->
+    <script type="text/javascript">
+      var sc_project=8264132; 
+      var sc_invisible=1; 
+      var sc_security="4b97fe2d"; 
+    </script>
+    <script type="text/javascript" src="http://www.statcounter.com/counter/counter.js"></script>
+    <noscript>
+      <div class="statcounter">
+        <a title="hit counter joomla" 
+           href="http://statcounter.com/joomla/"
+           target="_blank">
+          <img class="statcounter"
+               src="http://c.statcounter.com/8264132/0/4b97fe2d/1/"
+               alt="hit counter joomla" />
+        </a>
+      </div>
+    </noscript>
+    <!-- End of StatCounter Code for Default Guide -->
+  </body>
+</html>
+
diff --git a/contributors.md b/contributors.md
new file mode 100644
index 0000000..629f318
--- /dev/null
+++ b/contributors.md
@@ -0,0 +1,42 @@
+---
+layout: default6
+title: Contributors
+---
+
+Joshua was originally ported from <a href="http://www.isi.edu/~chiang/">David Chiang's</a>
+Python implementation of Hiero by <a href="http://www.cs.jhu.edu/~zfli/">Zhifei Li</a>.
+Since then, there have been a number of contributors to the project (listed here in
+alphabetical order).
+
+- [Aaron Phillips](http://www.cs.cmu.edu/~aphillips/) (Carnegie Mellon)
+- [Adam Pauls](http://www.eecs.berkeley.edu/~adpauls/) (Berkeley)
+- [Chris Callison-Burch](http://cs.jhu.edu/~ccb/) (Penn)
+- [Chris Dyer](http://www.cs.cmu.edu/~cdyer/) (Carnegie Mellon)
+- [Colin Bannard](http://comp.ling.utexas.edu/~bannard/) (UT Austin)
+- [Jonathan Weese](http://cs.jhu.edu/~jonny/) (Johns Hopkins)
+              <li>Josh Schroeder (Edinburgh)</li>
+- [Juri Ganitkevitch](http://cs.jhu.edu/~juri/) (Johns Hopkins)
+- [Kenneth Heafield](http://kheafield.com/) (Carnegie Mellon)
+- [Lane Schwartz](http://dowobeha.github.com) (Minnesota)
+- [Luke](https://plus.google.com/107547504293849335564) [Orland](https://github.com/lukeorland) (Johns Hopkins)
+- [Matt Post](http://cs.jhu.edu/~post/) (Johns Hopkins)
+- [Omar F. Zaidan](http://cs.jhu.edu/~ozaidan/) (Johns Hopkins)
+- [Wren Ng Thornton](http://llama.freegeek.org/~wren/research.html) (Indiana University)
+- Yuan Cao (Johns Hopkins)
+
+Please email if you know of anyone who has been left off this list.
+
+## Sponsors
+
+We gratefully acknowledge support provided by the following institutions.
+
+<table style="padding: 5px">
+    <tr>
+        <td><img src="images/sponsors/darpa-logo.jpg" width="240px" alt="DARPA"></td>
+        <td><img src="images/sponsors/NSF-logo.jpg" width="240px" alt="NSF"></td>
+    </tr>
+    <tr>
+        <td><img src="images/sponsors/euromatrix.png" width="240px" alt="EuroMatrix+"></td>
+        <td><img src="images/sponsors/hltcoe-logo3.png" width="240px" alt="Johns Hopkins HLTCOE"></td>
+    </tr>
+ </table>
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..43e47d4
--- /dev/null
+++ b/index.md
@@ -0,0 +1,41 @@
+---
+layout: default6
+twitter: true
+title: Welcome to Joshua
+---
+
+Joshua is an open-source statistical machine translation decoder for
+phrase-based (*new* in 6.0), hierarchical, and syntax-based machine
+translation, written in Java.  It is developed at the
+[Human Language Technology Center of Excellence](http://hltcoe.jhu.edu/)
+at [Johns Hopkins University](http://www.jhu.edu/).
+
+The latest release of Joshua is version 6.0 (February 4,
+2015). Information about downloading and using Joshua can be found
+[in the Joshua documentation](/6.0/).
+
+### Features
+
+Joshua 6.0 has the following features, among many others:
+
+- Both phrase-based and hierarchical decoding
+- Sparse feature implementation with support for millions of features
+- Support for lattice decoding
+- Fast decoding speed (on par with [Moses](http://statmt.org/moses)
+  and [mtplz](https://github.com/kpu/mtplz))
+
+### Version History
+
+The latest version of Joshua is version 6.0. You might also be
+interested in older papers describing Joshua
+[1.0](http://aclweb.org/anthology/W/W09/W09-0424.pdf),
+[the Joshua demo paper](http://aclweb.org/anthology-new/P/P09/P09-4007.pdf),
+and versions [2.0](http://aclweb.org/anthology-new/W/W10/W10-1718.pdf),
+[3.0](http://aclweb.org/anthology-new/W/W11/W11-2160.pdf),
+[4.0](http://aclweb.org/anthology-new/W/W12/W12-3134.pdf), and
+[5.0](http://aclweb.org/anthology-new/W/W13/W13-2226.pdf).
+
+### License
+
+Joshua is released under the
+[BSD 2-clause license](https://github.com/joshua-decoder/joshua/blob/master/LICENSE). 
diff --git a/index.html b/index5.html
similarity index 100%
rename from index.html
rename to index5.html
diff --git a/joshua6.css b/joshua6.css
new file mode 100644
index 0000000..03d4ebc
--- /dev/null
+++ b/joshua6.css
@@ -0,0 +1,220 @@
+/*
+ * Globals
+ */
+
+body {
+  font-family: Georgia, "Times New Roman", Times, serif;
+  color: #555;
+}
+
+h1, .h1,
+h2, .h2,
+h3, .h3,
+h4, .h4,
+h5, .h5,
+h6, .h6 {
+  margin-top: 0;
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-weight: normal;
+  color: #333;
+}
+
+h1 {
+    font-size: 22pt;
+}
+
+h2 {
+  text-decoration: underline;
+  font-size: 18pt;
+}
+
+h3 {
+  font-size: 14pt;
+  font-weight: bold;
+}
+
+/*
+ * Override Bootstrap's default container.
+ */
+
+@media (min-width: 1200px) {
+  .container {
+    /* width: 970px; */
+      width: 100%;
+  }
+}
+
+
+/*
+ * Masthead for nav
+ */
+
+.blog-masthead {
+  background-color: #007777;
+  -webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,.1);
+          box-shadow: inset 0 -2px 5px rgba(0,0,0,.1);
+}
+
+/* Nav links */
+.blog-nav-item {
+  position: relative;
+  display: inline-block;
+  padding: 10px;
+  font-weight: 500;
+  color: #cdddeb;
+}
+.blog-nav-item:hover,
+.blog-nav-item:focus {
+  color: #fff;
+  text-decoration: none;
+}
+
+/* Active state gets a caret at the bottom */
+.blog-nav .active {
+  color: #fff;
+}
+.blog-nav .active:after {
+  position: absolute;
+  bottom: 0;
+  left: 50%;
+  width: 0;
+  height: 0;
+  margin-left: -5px;
+  vertical-align: middle;
+  content: " ";
+  border-right: 5px solid transparent;
+  border-bottom: 5px solid;
+  border-left: 5px solid transparent;
+}
+
+
+/*
+ * Blog name and description
+ */
+
+.blog-header {
+  padding-top: 20px;
+  padding-bottom: 20px;
+}
+.blog-title {
+  margin-top: 30px;
+  margin-bottom: 0;
+  font-size: 60px;
+  font-weight: normal;
+}
+.blog-description {
+  font-size: 20px;
+  color: #999;
+}
+
+
+/*
+ * Main column and sidebar layout
+ */
+
+.blog-main {
+  font-size: 14px;
+
+}
+
+/* Sidebar modules for boxing content */
+.sidebar-module {
+  padding: 3px;
+  margin-top: 5px;
+  margin-left: 0px;
+  margin-right: 5px;
+  margin-bottom: 5px;
+}
+.sidebar-module-inset {
+  padding: 0px;
+  background-color: #f5f5f5;
+  border-radius: 0px;
+}
+.sidebar-module-inset p:last-child,
+.sidebar-module-inset ul:last-child,
+.sidebar-module-inset ol:last-child {
+  margin-bottom: 0;
+}
+
+
+/* Pagination */
+.pager {
+  margin-bottom: 60px;
+  text-align: left;
+}
+.pager > li > a {
+  width: 140px;
+  padding: 10px 20px;
+  text-align: center;
+  border-radius: 30px;
+}
+
+
+/*
+ * Blog posts
+ */
+
+.blog-post {
+  margin-bottom: 60px;
+}
+.blog-post-title {
+  margin-top: 10px;
+  margin-bottom: 5px;
+  font-size: 24px;
+}
+.blog-post-meta {
+  margin-bottom: 20px;
+  color: #999;
+}
+
+
+/*
+ * Footer
+ */
+
+.blog-footer {
+  padding: 40px 0;
+  color: #999;
+  text-align: center;
+  background-color: #f9f9f9;
+  border-top: 1px solid #e5e5e5;
+}
+.blog-footer p:last-child {
+  margin-bottom: 0;
+}
+
+#download {
+    background-color: green;
+    font-size: 14pt;
+    font-weight: bold;
+    text-align: center;
+    color: white;
+    border-radius: 5px;
+    padding: 4px;
+}
+
+#download a:link {
+    color: white;
+}
+
+#download a:hover {
+    color: lightgrey;
+}
+
+#download a:visited {
+    color: white;
+}
+
+.twitter {
+    margin-top: 70px;
+}
+
+.button {
+    background-color: green;
+    font-size: 14pt;
+    font-weight: bold;
+    text-align: center;
+    color: white;
+    border-radius: 5px;
+    padding: 4px;
+}
diff --git a/language-packs.csv b/language-packs.csv
new file mode 100644
index 0000000..bbfd05d
--- /dev/null
+++ b/language-packs.csv
@@ -0,0 +1,2 @@
+Description,size,source,target,url,release_date
+Spanish-English conversational speech,small,spa,eng,http://cs.jhu.edu/~post/language-packs/es-en-fisher-callhome.tgz,2015-01-17
diff --git a/language-packs/index.md b/language-packs/index.md
new file mode 100644
index 0000000..29e53b6
--- /dev/null
+++ b/language-packs/index.md
@@ -0,0 +1,24 @@
+---
+layout: default6
+title: Language packs
+---
+
+The simplest way to use Joshua is to use the provided "language packs", which are pre-built models
+that enable translation in for particular language pairs. You can download and unpack each model and
+then run the included script to translate new sentences.
+
+It is important to note the assumptions underlying the translation engine:
+
+- Joshua takes input on STDIN and outputs translations to STDOUT.
+
+- Joshua expects its input to be one plain-text, UTF-8 encoded sentence per UNIX-delimited line. If
+  you are translating documents, you must perform sentence segmentation yourself.
+  
+- Additionally, the input must be tokenized. To tokenize your data, you can use the script provided
+  in each language pack.
+
+## Available language packs
+
+*Language packs are forthcoming*. 
+
+Have a request? Please email [Matt Post](http://cs.jhu.edu/~post/).
diff --git a/releases/5.0/index.html b/releases/5.0/index.html
new file mode 100644
index 0000000..acdc714
--- /dev/null
+++ b/releases/5.0/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="refresh" content="1;url=http://example.com">
+        <script type="text/javascript">
+            window.location.href = "http://cs.jhu.edu/~post/files/joshua-v5.0.tgz"
+        </script>
+        <title>Page Redirection</title>
+    </head>
+    <body>
+        If you are not redirected automatically, follow 
+        <a href='http://cs.jhu.edu/~post/files/joshua-v5.0.tgz'>this link</a>
+        to download Joshua directly.
+    </body>
+</html>
diff --git a/releases/6.0/index.html b/releases/6.0/index.html
new file mode 100644
index 0000000..8542442
--- /dev/null
+++ b/releases/6.0/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+    <head>
+        <meta charset="UTF-8">
+        <meta http-equiv="refresh" content="1;url=http://example.com">
+        <script type="text/javascript">
+            window.location.href = "http://cs.jhu.edu/~post/files/joshua-v6.0.tgz"
+        </script>
+        <title>Page Redirection</title>
+    </head>
+    <body>
+        If you are not redirected automatically, follow 
+        <a href='http://cs.jhu.edu/~post/files/joshua-v6.0.tgz'>this link</a>
+        to download Joshua directly.
+    </body>
+</html>
diff --git a/releases/index.html b/releases/index.html
new file mode 100644
index 0000000..a326e80
--- /dev/null
+++ b/releases/index.html
@@ -0,0 +1,11 @@
+---
+layout: default6
+title: Joshua releases
+---
+
+The current release of Joshua is version 6.0, which can be [downloaded
+here](6.0/). It was released on February 4, 2015.
+
+Older versions are also available:
+
+- [Version 5.0](5.0/) was released on November 1, 2014.