http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/liquid_raw
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/liquid_raw 
b/website-old/_includes/JB/liquid_raw
deleted file mode 100644
index da2d359..0000000
--- a/website-old/_includes/JB/liquid_raw
+++ /dev/null
@@ -1,32 +0,0 @@
-{% comment%}<!--
-The liquid_raw helper is a way to display raw liquid code, as opposed to 
parsing it.
-Normally you'd use Liquid's built in 'raw' tag. 
-The problem is GitHub Jekyll does not support the current Liquid release.
-GitHub Jekyll supports the deprecated 'literal' tag.
-Using one will break the other if you plan to deploy to GitHub pages.
-  see: https://github.com/mojombo/jekyll/issues/425
-
-Since I don't want to mess with Liquid versions, I'll just rewrite the way I 
-intend to give liquid examples. It's not an elegant solution by any means:
-
-Usage: 
-  1) Define a 'text' variable with the block of liquid code you intend to 
display.
-  2) Pass the text variable to include JB/liquid_raw
-
-  example:
-  {% capture text %}|.% for tag in tags_list %.|
-    <li><a href="|.{ site.var.tags_path }.||.{ tag[0] }.|-ref">|.{ tag[0] }.| 
<span>|.{tag[1].size}.|</span></a></li>
-  |.% endfor %.|
-
-  |.% assign tags_list = null %.|{% endcapture %}    
-  {% include JB/liquid_raw %}
-  
-  As seen here, you must use "|." and ".|" as opening and closing brackets.
--->{% endcomment%}
-
-{% if site.JB.liquid_raw.provider == "custom" %}
-  {% include custom/liquid_raw %}
-{% else %}
-  <pre><code>{{text | replace:"|.", "&#123;" | replace:".|", "&#125;" | 
replace:">", "&gt;" | replace:"<", "&lt;" }}</code></pre>
-{% endif %}
-{% assign text = nil %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/pages_list
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/pages_list 
b/website-old/_includes/JB/pages_list
deleted file mode 100644
index 42f827a..0000000
--- a/website-old/_includes/JB/pages_list
+++ /dev/null
@@ -1,39 +0,0 @@
-{% comment %}<!--
-The pages_list include is a listing helper.
-Usage:
-  1) assign the 'pages_list' variable to a valid array of pages or posts.
-  2) include JB/pages_list
-  example:
-    <ul>
-         {% assign pages_list = site.pages %}  
-         {% include JB/pages_list %}
-       </ul>
-       
-  Grouping: (optional): 
-       assign the 'group' variable to constrain the list to only pages/posts
-       in the given group. Note you must define the group manually in the 
page/post
-       meta-data to use this feature.
-       Grouping is mainly helpful for non-post pages.
-       If you want to group posts, it's easier/better to tag them, then pass 
the tagged posts array.
-       i.e. site.tags.cool_tag (this returns an array of posts tagged: 
cool_tag)
-       
-  This helper can be seen in use at: ../_layouts/default.html
--->{% endcomment %}
-
-{% if site.JB.pages_list.provider == "custom" %}
-  {% include custom/pages_list %}
-{% else %}
-  {% for node in pages_list %}
-    {% if node.title != null %}
-      {% if group == null or group == node.group %}
-       {% if page.url == node.url %}
-       <li class="active"><a href="{{ BASE_PATH }}{{node.url}}" 
class="active">{{node.title}}</a></li>
-       {% else %}
-       <li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
-       {% endif %}
-      {% endif %}
-    {% endif %}
-  {% endfor %}
-{% endif %}
-{% assign pages_list = nil %}
-{% assign group = nil %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/posts_collate
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/posts_collate 
b/website-old/_includes/JB/posts_collate
deleted file mode 100644
index f612ade..0000000
--- a/website-old/_includes/JB/posts_collate
+++ /dev/null
@@ -1,55 +0,0 @@
-{% comment %}<!--
-Collate_posts helper. Collated posts by year and month.
-Usage:
-  1) assign the 'posts_collate' variable to a valid array of posts.
-  2) include JB/posts_collate
-  example:
-    {% assign posts_collate = site.posts %}
-    {% include JB/posts_collate %}
-
-  Ordering:
-    Posts are displayed in reverse chronological order.
-    For normal chronological order:
-      1) Change the for loop to this:
-        => 'for post in site.posts reversed'
-      2) Next make sure to change 'post.previous.date' to:
-        => 'post.next.date'
-        
--->{% endcomment %}
-
-{% if site.JB.posts_collate.provider == "custom" %}
-  {% include custom/posts_collate %}
-{% else %}
-  {% for post in posts_collate  %}
-    {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
-    {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
-    {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture 
%}
-    {% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture 
%}
-  
-    {% if forloop.first %}
-      <h2>{{this_year}}</h2>
-      <h3>{{this_month}}</h3>
-      <ul>
-    {% endif %}
-  
-    <li><span>{{ post.date | date: "%B %e, %Y" }}</span> &raquo; <a href="{{ 
BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
-  
-    {% if forloop.last %}
-      </ul>
-    {% else %}
-      {% if this_year != next_year %}
-        </ul>
-        <h2>{{next_year}}</h2>
-        <h3>{{next_month}}</h3>
-        <ul>
-      {% else %}    
-        {% if this_month != next_month %}
-          </ul>
-          <h3>{{next_month}}</h3>
-          <ul>
-        {% endif %}
-      {% endif %}
-    {% endif %}
-  {% endfor %}
-{% endif %}
-{% assign posts_collate = nil %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/setup
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/setup b/website-old/_includes/JB/setup
deleted file mode 100644
index a2e4793..0000000
--- a/website-old/_includes/JB/setup
+++ /dev/null
@@ -1,28 +0,0 @@
-{% capture jbcache %}
-  <!--
-  - Dynamically set liquid variables for working with URLs/paths
-  -->
-{% include JB/is_production %}
-  {% if site.JB.setup.provider == "custom" %}
-    {% include custom/setup %}
-  {% else %}
-    {% if is_production and site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
-      {% assign BASE_PATH = site.JB.BASE_PATH %}
-      {% assign HOME_PATH = site.JB.BASE_PATH %}
-    {% else %}
-      {% assign BASE_PATH = nil %}
-      {% assign HOME_PATH = "/" %}
-    {% endif %}
-
-    {% if site.JB.ASSET_PATH %}
-      {% assign ASSET_PATH = site.JB.ASSET_PATH %}
-    {% else %}
-      {% if layout.theme.name %}
-      {% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/{{ 
layout.theme.name }}{% endcapture %}
-      {% else %}
-      {% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/{{ page.theme.name 
}}{% endcapture %}
-      {% endif %}
-    {% endif %}
-
-  {% endif %}
-{% endcapture %}{% assign jbcache = nil %}

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/sharing
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/sharing b/website-old/_includes/JB/sharing
deleted file mode 100644
index 175a001..0000000
--- a/website-old/_includes/JB/sharing
+++ /dev/null
@@ -1,9 +0,0 @@
-{% include JB/is_production %}
-{% if is_production and site.JB.sharing.provider and page.JB.sharing != false 
%}
-
-{% case site.JB.sharing.provider %}
-{% when "custom" %}
-  {% include custom/sharing %}
-{% endcase %}
-
-{% endif %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/sort_collection
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/sort_collection 
b/website-old/_includes/JB/sort_collection
deleted file mode 100644
index 1e32015..0000000
--- a/website-old/_includes/JB/sort_collection
+++ /dev/null
@@ -1,81 +0,0 @@
-{% capture jbcache %}{% comment %}
-
-  Sort the given array or map.
-  
-  Parameters:
-    collection: the array or map to sort [REQUIRED]
-    sort_by: the property to sort by [OPTIONAL]
-    sort_descending: reverse the collection [OPTIONAL]
-
-  Returns:
-    sort_result: the sorted collection
-
-  Examples:
-    <h3>Pages</h3>
-    <ol>
-      {% include JB/sort_collection collection=site.pages sort_by="title" %}
-      {% assign pages_list = sort_result %}
-      {% include JB/pages_list %}
-    </ol>
-
-    <h3>Pages [Reversed]</h3>
-    <ol>
-      {% include JB/sort_collection collection=site.pages sort_by="title" 
sort_descending=true %}
-      {% assign pages_list = sort_result %}
-      {% include JB/pages_list %}
-    </ol>
-
-    <h3>Array</h3>
-    <ol>
-      {% assign test_array = "one,two,three,four" | split: "," %}
-      {% include JB/sort_collection collection=test_array %}
-      {% for test in sort_result %}
-        <li>{{test}}</li>
-      {% endfor %}
-    </ol>
-
-    <h3>Array [Reversed]</h3>
-    <ol>
-      {% assign test_array = "one,two,three,four" | split: "," %}
-      {% include JB/sort_collection collection=test_array sort_descending=true 
%}
-      {% for test in sort_result %}
-        <li>{{test}}</li>
-      {% endfor %}
-    </ol>
-
-{% endcomment %}
-
-{% assign is_array = true %}
-{% assign sort_result = "," | split: "," %}
-{% assign collection = include.collection %}
-{% if include.sort_by %}
-  {% assign sort_by = include.sort_by %}
-{% else %}
-  {% assign sort_by = "title" %}
-{% endif %}
-
-{% if collection and collection.size > 0 %}
-  {% for x in collection.first %}
-    {% if x[1].size > 0 %}
-      {% assign is_array = false %}
-    {% endif %}
-    {% break %}
-  {% endfor %}
-
-  {% if is_array == false %}
-    {% assign sort_result = collection | sort: sort_by %}
-  {% else %}
-    {% assign sort_result = collection | sort %}
-  {% endif %}
-  
-  {% if include.sort_descending %}
-    {% assign reversed = "," | split: "," %}
-    {% for index in (1..sort_result.size) %}
-      {% assign i = sort_result.size | minus: index %}
-      {% assign reversed = reversed | push: sort_result[i] %}
-    {% endfor %}
-    {% assign sort_result = reversed %}
-    {% assign reversed = nil %}
-  {% endif %}
-
-{% endif %}{% endcapture %}{% assign jbcache = nil %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/JB/tags_list
----------------------------------------------------------------------
diff --git a/website-old/_includes/JB/tags_list 
b/website-old/_includes/JB/tags_list
deleted file mode 100644
index 8eb62a7..0000000
--- a/website-old/_includes/JB/tags_list
+++ /dev/null
@@ -1,33 +0,0 @@
-{% comment %}<!--
-The tags_list include is a listing helper for tags.
-Usage:
-  1) assign the 'tags_list' variable to a valid array of tags.
-  2) include JB/tags_list
-  example:
-    <ul>
-         {% assign tags_list = site.tags %}  
-         {% include JB/tags_list %}
-       </ul>
-  
-  Notes: 
-    Tags can be either a Hash of tag objects (hashes) or an Array of tag-names 
(strings).
-    The encapsulating 'if' statement checks whether tags_list is a Hash or 
Array.
-    site.tags is a Hash while page.tags is an array.
-    
-  This helper can be seen in use at: ../_layouts/default.html
--->{% endcomment %}
-
-{% if site.JB.tags_list.provider == "custom" %}
-  {% include custom/tags_list %}
-{% else %}
-  {% if tags_list.first[0] == null %}
-    {% for tag in tags_list %} 
-       <li><a href="{{ BASE_PATH }}{{ site.JB.tags_path }}#{{ tag }}-ref">{{ 
tag }} <span>{{ site.tags[tag].size }}</span></a></li>
-    {% endfor %}
-  {% else %}
-    {% for tag in tags_list %} 
-       <li><a href="{{ BASE_PATH }}{{ site.JB.tags_path }}#{{ tag[0] 
}}-ref">{{ tag[0] }} <span>{{ tag[1].size }}</span></a></li>
-    {% endfor %}
-  {% endif %}
-{% endif %}
-{% assign tags_list = nil %}

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout-retro/default.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout-retro/default.html 
b/website-old/_includes/themes/mahout-retro/default.html
deleted file mode 100644
index 4144d5d..0000000
--- a/website-old/_includes/themes/mahout-retro/default.html
+++ /dev/null
@@ -1,166 +0,0 @@
-<!DOCTYPE html>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-
-<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en"><head><meta 
http-equiv="Content-Type" content="text/html; charset=UTF-8">
-  <title>Apache Mahout: Scalable machine learning and data mining</title>
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-  <meta name="Distribution" content="Global">
-  <meta name="Robots" content="index,follow">
-  <meta name="keywords" content="apache, apache hadoop, apache lucene,
-        business data mining, cluster analysis,
-        collaborative filtering, data extraction, data filtering, data 
framework, data integration,
-        data matching, data mining, data mining algorithms, data mining 
analysis, data mining data,
-        data mining introduction, data mining software,
-        data mining techniques, data representation, data set, datamining,
-        feature extraction, fuzzy k means, genetic algorithm, hadoop,
-        hierarchical clustering, high dimensional, introduction to data 
mining, kmeans,
-        knowledge discovery, learning approach, learning approaches, learning 
methods,
-        learning techniques, lucene, machine learning, machine translation, 
mahout apache,
-        mahout taste, map reduce hadoop, mining data, mining methods, naive 
bayes,
-        natural language processing,
-        supervised, text mining, time series data, unsupervised, web data 
mining">
-  <link rel="shortcut icon" type="image/x-icon" 
href="https://mahout.apache.org/images/favicon.ico";>
-  <!--<script type="text/javascript" src="{{ 
BASE_PATH}}/js/prototype.js"></script>-->
-  <script type="text/javascript" 
src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.2.0/prototype.js";></script>
-  <script type="text/javascript" src="{{ ASSET_PATH}}/js/effects.js"></script>
-  <script type="text/javascript" src="{{ ASSET_PATH}}/js/search.js"></script>
-  <script type="text/javascript" src="{{ ASSET_PATH}}/js/slides.js"></script>
-
-  <link href="{{ ASSET_PATH }}/css/bootstrap.min.css" rel="stylesheet" 
media="screen">
-  <link href="{{ ASSET_PATH }}/css/bootstrap-responsive.css" rel="stylesheet">
-  <link rel="stylesheet" href="{{ ASSET_PATH }}/css/global.css" 
type="text/css">
-
-  <!-- mathJax stuff -- use `\(...\)` for inline style math in markdown -->
-  <script type="text/x-mathjax-config">
-  MathJax.Hub.Config({
-    tex2jax: {
-      skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
-    }
-  });
-  MathJax.Hub.Queue(function() {
-    var all = MathJax.Hub.getAllJax(), i;
-    for(i = 0; i < all.length; i += 1) {
-      all[i].SourceElement().parentNode.className += ' has-jax';
-    }
-  });
-  </script>
-  <script type="text/javascript">
-    var mathjax = document.createElement('script'); 
-    mathjax.type = 'text/javascript'; 
-    mathjax.async = true;
-
-    mathjax.src = ('https:' == document.location.protocol) ?
-        
'https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
 : 
-        
'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
-       
-         var s = document.getElementsByTagName('script')[0]; 
-    s.parentNode.insertBefore(mathjax, s);
-  </script>
-</head>
-
-<body id="home" data-twttr-rendered="true">
-  <div id="wrap">
-   <div id="header">
-    <div id="logo"><a href="{{ BASE_PATH }}/"><img 
src="/assets/img/mahout-logo-brudman.png" alt="Logos for Mahout and Apache 
Software Foundation" /></a></div>
-  <div id="search">
-    <form id="search-form" action="http://www.google.com/search"; method="get" 
class="navbar-search pull-right">    
-      <input value="http://mahout.apache.org"; name="sitesearch" type="hidden">
-      <input class="search-query" name="q" id="query" type="text">
-      <input id="submission" type="image" src="/assets/img/mahout-lupe.png" 
alt="Search" />
-    </form>
-  </div>
- 
-    <div class="navbar navbar-inverse" 
style="position:absolute;top:133px;padding-right:0px;padding-left:0px;">
-      <div class="navbar-inner" style="border: none; background: #999; border: 
none; border-radius: 0px;">
-        <div class="container">
-          <button type="button" class="btn btn-navbar" data-toggle="collapse" 
data-target=".nav-collapse">
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-          </button>
-          <!-- <a class="brand" href="#">Apache Community Development 
Project</a> -->
-            {% include navbar.html %}
-        </div>
-      </div>
-    </div>
-
-</div>
-
- <div id="sidebar">
-  <div id="sidebar-wrap">
-    <h2>Twitter</h2>
-       <ul class="sidemenu">
-               <li>
-<a class="twitter-timeline" href="https://twitter.com/ApacheMahout"; 
data-widget-id="422861673444028416">Tweets by @ApacheMahout</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>
-</li>
-       </ul>
-    <h2>Apache Software Foundation</h2>
-    <ul class="sidemenu">
-      <li><a href="http://www.apache.org/foundation/how-it-works.html";>How the 
ASF works</a></li>
-      <li><a href="http://www.apache.org/foundation/getinvolved.html";>Get 
Involved</a></li>
-      <li><a href="http://www.apache.org/dev/";>Developer Resources</a></li>
-      <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
-      <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li>
-    </ul>
-    <h2>Related Projects</h2>
-    <ul class="sidemenu">
-      <li><a href="http://lucene.apache.org/";>Apache Lucene</a></li>
-      <li><a href="http://hadoop.apache.org/";>Apache Hadoop</a></li>
-      <li><a href="http://bigtop.apache.org/";>Apache Bigtop</a></li>
-      <li><a href="http://spark.apache.org/";>Apache Spark</a></li>
-         <li><a href="http://flink.apache.org/";>Apache Flink</a></li>
-    </ul>
-  </div>
-</div>
-
-  <div id="content-wrap" class="clearfix">
-   <div id="main">
-
-    {{ content }}
-   </div>
-  </div>     
-</div> 
-  <footer class="footer" align="center">
-    <div class="container">
-      <p>
-        Copyright &copy; 2014-2016 The Apache Software Foundation, Licensed 
under
-        the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.
-        <br />
-                 Apache Mahout, Mahout, Apache, the Apache feather logo, and 
the elephant rider logo are either registered trademarks or trademarks of <a 
href="http://www.apache.org/foundation/marks/";>The Apache Software 
Foundation</a> in the United States and other countries.
-      </p>
-    </div>
-  </footer>
-  
-  <script src="{{ ASSET_PATH}}/js/jquery-1.9.1.min.js"></script>
-  <script src="{{ ASSET_PATH}}/js/bootstrap.min.js"></script>
-  <script>
-    (function() {
-      var cx = '012254517474945470291:vhsfv7eokdc';
-      var gcse = document.createElement('script');
-      gcse.type = 'text/javascript';
-      gcse.async = true;
-      gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') 
+
-          '//www.google.com/cse/cse.js?cx=' + cx;
-      var s = document.getElementsByTagName('script')[0];
-      s.parentNode.insertBefore(gcse, s);
-    })();
-  </script>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout-retro/page.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout-retro/page.html 
b/website-old/_includes/themes/mahout-retro/page.html
deleted file mode 100755
index e981ad9..0000000
--- a/website-old/_includes/themes/mahout-retro/page.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout-retro/post.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout-retro/post.html 
b/website-old/_includes/themes/mahout-retro/post.html
deleted file mode 100644
index 0de6bcc..0000000
--- a/website-old/_includes/themes/mahout-retro/post.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout-retro/settings.yml
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout-retro/settings.yml 
b/website-old/_includes/themes/mahout-retro/settings.yml
deleted file mode 100644
index 6b1babc..0000000
--- a/website-old/_includes/themes/mahout-retro/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
-  name : mahout-retro
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/body-old.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/body-old.html 
b/website-old/_includes/themes/mahout/body-old.html
deleted file mode 100644
index 272e483..0000000
--- a/website-old/_includes/themes/mahout/body-old.html
+++ /dev/null
@@ -1,22 +0,0 @@
-    <nav class="navbar navbar-inverse navbar-fixed-top">
-        <div class="container-fluid">
-            <div class="navbar-header">
-                <button type="button" class="navbar-toggle collapsed" 
data-toggle="collapse" data-target="#navbar" aria-expanded="false" 
aria-controls="navbar">
-                    <span class="sr-only">Toggle navigation</span>
-                    <span class="icon-bar"></span>
-                    <span class="icon-bar"></span>
-                    <span class="icon-bar"></span>
-                </button>
-                <a class="navbar-brand" href="/"><i class="fa fa-heart"></i> 
{{ site.data.global.title }}</a>
-            </div>
-            <div id="navbar" class="navbar-collapse collapse">
-                <ul class="nav navbar-nav navbar-right">
-                    {% for item in site.data.nav.main %}
-                        <li>
-                            <a href="{{ item.url }}">{{ item.text }}</a>
-                        </li>
-                    {% endfor %}
-                </ul>
-            </div>
-        </div>
-    </nav>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/default.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/default.html 
b/website-old/_includes/themes/mahout/default.html
deleted file mode 100644
index 529badf..0000000
--- a/website-old/_includes/themes/mahout/default.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
-    <title>{{ page.title }}</title>
-    {% if page.description %}<meta name="description" content="{{ 
page.description }}">{% endif %}
-    <meta name="author" content="{{ site.author.name }}">
-
-    <!-- Enable responsive viewport -->
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-    <!-- Bootstrap styles -->
-    <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.css" rel="stylesheet">
-    <!-- Optional theme -->
-    <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap-theme.min.css" 
rel="stylesheet">
-    <!-- Sticky Footer -->
-    <link href="{{ ASSET_PATH }}/bootstrap/css/bs-sticky-footer.css" 
rel="stylesheet">
-    
-    <!-- Custom styles -->
-    <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" 
type="text/css" media="all">
-
-    <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media 
queries -->
-    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
-    <!--[if lt IE 9]>
-      <script 
src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js";></script>
-      <script 
src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js";></script>
-    <![endif]-->
-
-    <!-- Fav and touch icons -->
-    <!-- Update these with your own images
-      <link rel="shortcut icon" href="images/favicon.ico">
-      <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
-      <link rel="apple-touch-icon" sizes="72x72" 
href="images/apple-touch-icon-72x72.png">
-      <link rel="apple-touch-icon" sizes="114x114" 
href="images/apple-touch-icon-114x114.png">
-    -->
-
-    <!-- atom & rss feed -->
-    <link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" 
type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
-    <link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" 
type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
-
-  </head>
-
-  <body>
-  {% include themes/mahout/navbar_main.html %}
-
-      <div class="container">
-        {{ content }}
-      </div>
-
-    </div>
-
-    <div id="footer">
-      <div class="container">
-        <p>&copy; {{ site.time | date: '%Y' }} {{ site.author.name }}
-          with help from <a href="http://jekyllbootstrap.com"; target="_blank" 
title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a>
-          and <a href="http://getbootstrap.com"; target="_blank">Bootstrap</a>
-        </p>
-      </div>
-    </div>
-
-    {% include JB/analytics %}
-
-
-    <!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not 
supported in IE8) -->
-    <!-- Placed at the end of the document so the pages load faster -->
-    <script 
src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";></script>
-    <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/footer.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/footer.html 
b/website-old/_includes/themes/mahout/footer.html
deleted file mode 100644
index 1d1c904..0000000
--- a/website-old/_includes/themes/mahout/footer.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-    <footer class="site-footer">
-        <div class="container">
-            <div class="row">
-                <div class="col-md-12">
-                    <p class="text-muted">{{ site.data.global.footer_text 
}}</p>
-                </div>
-            </div>
-        </div>
-    </footer>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/header.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/header.html 
b/website-old/_includes/themes/mahout/header.html
deleted file mode 100644
index 0c29215..0000000
--- a/website-old/_includes/themes/mahout/header.html
+++ /dev/null
@@ -1,75 +0,0 @@
-<!doctype html>
-<!--[if lt IE 7 ]><html itemscope itemtype="http://schema.org/{% if page.id or 
post.id %}Article{% else %}Organization{% endif %}" id="ie6" class="ie ie-old" 
lang="en-US"><![endif]-->
-<!--[if IE 7 ]>   <html itemscope itemtype="http://schema.org/{% if page.id or 
post.id %}Article{% else %}Organization{% endif %}" id="ie7" class="ie ie-old" 
lang="en-US"><![endif]-->
-<!--[if IE 8 ]>   <html itemscope itemtype="http://schema.org/{% if page.id or 
post.id %}Article{% else %}Organization{% endif %}" id="ie8" class="ie ie-old" 
lang="en-US"><![endif]-->
-<!--[if IE 9 ]>   <html itemscope itemtype="http://schema.org/{% if page.id or 
post.id %}Article{% else %}Organization{% endif %}" id="ie9" class="ie" 
lang="en-US"><![endif]-->
-<!--[if gt IE 9]><!--><html itemscope itemtype="http://schema.org/{% if 
page.id or post.id %}Article{% else %}Organization{% endif %}" 
lang="en-US"><!--<![endif]-->
-<head>
-    <meta name="author" content="The Apache Software Foundation">
-
-    <!-- Enable responsive viewport -->
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-    <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
-    <!--[if lt IE 9]>
-      <script 
src="http://html5shim.googlecode.com/svn/trunk/html5.js";></script>
-    <![endif]-->
-
-    <!-- Le styles -->
-    <link 
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
 rel="stylesheet" 
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
 crossorigin="anonymous">
-    <link href="https://fonts.googleapis.com/icon?family=Material+Icons";>
-    <link href="/assets/themes/mahout/bootstrap/css/bootstrap.css" 
rel="stylesheet">
-    <link href="/assets/themes/mahout/css/style.css?body=1" rel="stylesheet" 
type="text/css">
-    <link href="/assets/themes/mahout/css/syntax.css" rel="stylesheet"  
type="text/css" media="screen" /> 
-
-<!--
-    <link href="/assets/themes/mahout/css/main.css" rel="stylesheet"  
type="text/css" media="screen" /> 
-    <link href="/assets/themes/mahout/css/global.css" rel="stylesheet"  
type="text/css" media="screen" /> 
-    <link href="/assets/themes/mahout/css/global__.css" rel="stylesheet"  
type="text/css" media="screen" /> 
--->
-    <!-- Le fav and touch icons -->
-    <!-- Update these with your own images
-    <link rel="shortcut icon" href="images/favicon.ico">
-    <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
-    <link rel="apple-touch-icon" sizes="72x72" 
href="images/apple-touch-icon-72x72.png">
-    <link rel="apple-touch-icon" sizes="114x114" 
href="images/apple-touch-icon-114x114.png">
-    -->
-
-    <!-- Js -->
-    <script src="https://code.jquery.com/jquery-1.10.2.min.js";></script>
-    <script src="/assets/themes/mahout/bootstrap/js/bootstrap.min.js"></script>
-<script type="text/x-mathjax-config">
-  MathJax.Hub.Config({
-    tex2jax: {
-      skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
-    }
-  });
-  MathJax.Hub.Queue(function() {
-    var all = MathJax.Hub.getAllJax(), i;
-    for(i = 0; i < all.length; i += 1) {
-      all[i].SourceElement().parentNode.className += ' has-jax';
-    }
-  });
-  </script>
-  <script type="text/javascript">
-    var mathjax = document.createElement('script'); 
-    mathjax.type = 'text/javascript'; 
-    mathjax.async = true;
-
-    mathjax.src = ('https:' == document.location.protocol) ?
-        
'https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
 : 
-        
'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
-    
-      var s = document.getElementsByTagName('script')[0]; 
-    s.parentNode.insertBefore(mathjax, s);
-  </script>
-
-
-    <!-- atom & rss feed -->
-    <link href="/atom.xml" type="application/atom+xml" rel="alternate" 
title="Sitewide ATOM Feed">
-    <link href="/rss.xml" type="application/rss+xml" rel="alternate" 
title="Sitewide RSS Feed">
-
-
-</head>
-
-

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/homepage.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/homepage.html 
b/website-old/_includes/themes/mahout/homepage.html
deleted file mode 100644
index 0f18c15..0000000
--- a/website-old/_includes/themes/mahout/homepage.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-<div class="jumbotron">
-  <div class="container">
-    <h1>Apache Mahout - DRAFT </h1>
-    <p>A distributed linear algebra framework that runs on Spark, Flink, GPU's 
and more!<br/>
-      Use Mahout's library of machine learning algorithms or roll your own!  
Use Mahout-Samsara to write matrix
-      algebra using R like syntax.  Check out our tutorials and quick start 
guide to get rolling.
-    </p>
-    <div class="border row">
-      <div class="col-md-12 col-sm-12 col-xs-12 text-center newBtn">
-        <a href="http://youtube.com"; target="_mahoutVideo" class="btn 
btn-primary btn-lg bigFingerButton" role="button">Tutorial Video</a>
-        <!-- is this supposed to be a link that works or is it an artifact?? 
^^ -->
-        <a href="https://github.com/apache/mahout"; class="btn btn-primary 
btn-lg bigFingerButton" role="button">GET LATEST MAHOUT</a>
-      </div>
-    </div>
-  </div>
-</div>
-
-<!-- 3 wide column -->
-
-<!--
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-
-
-
-<div class="new">
-  <div class="container">
-    <h2>Latest Release</h2>
-    <span class="newMahout center-block">Apache Mahout 0.13.0</span>
-    <div class="border row">
-      <div class="border col-md-4 col-sm-4">
-        <h4>Simple and <br/>Extensible</h4>
-        <div class="viz">
-          <p>
-            Build your own algorithms using Mahouts R like interface.  See an 
example in this
-            <a href="" target="_blank">demo</a>
-          </p>
-        </div>
-      </div>
-      <div class="border col-md-4 col-sm-4">
-        <h4>Support for Multiple <br/>Distributed Backends</h4>
-        <div class="multi">
-        <p>
-           Custom bindings for Spark, Flink, and H20 enable a write once run 
anywhere machine learning platform
-          <a class="thumbnail text-center" href="#thumb">
-            <a href="https://github.com/apache/mahout"; class="btn btn-primary 
btn-lg bigFingerButton" role="button">See more in this DEMO. (not working)</a>
-          </a>
-        </p>
-        </div>
-      </div>
-      <div class="border col-md-4 col-sm-4">
-        <h4>Introducing Samsara an R<br/> dsl for writing ML algos</h4>
-        <div class="personal">
-        <p>
-          Use this capability to write algorithms at scale, that will run on 
any backend
-        </p>
-        </div>
-      </div>
-    </div>
-    <div class="border row">
-      <div class="border col-md-4 col-sm-4">
-        <h4>Support for GPUs</h4>
-        <p>
-          Distributed GPU Matrix-Matrix and Matrix-Vector multiplication on 
Spark along with sparse and dense matrix GPU-backed support.
-        </p>
-      </div>
-      <div class="border col-md-4 col-sm-4">
-        <h4>Extensible Algorithms Framework</h4>
-        <p>
-           A new scikit-learn-like framework for algorithms with the goal for
-           creating a consistent API for various machine-learning algorithms
-        </p>
-      </div>
-      <div class="border col-md-4 col-sm-4">
-        <h4>0.13.1 - Future Plans</h4>
-        <p>
-          Further Native Integration
-          * JCuda backing for In-core Matrices and CUDA solvers
-          * GPU/OpenMP Acceleration for linear solvers
-          * Scala 2.11 Support
-          * Spark 2.x Support
-        </p>
-      </div>
-    </div>
-    <div class="col-md-12 col-sm-12 col-xs-12 text-center">
-      <p style="text-align:center; margin-top: 32px; font-size: 14px; color: 
gray; font-weight: 200; font-style: italic; padding-bottom: 0;">See more 
details in
-        <a href="tbd">0.13.0 Release Note</a>
-      </p>
-    </div>
-  </div>
-</div>
-
-      <!--
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-
-
-
-        <div class="container">
-            <div class="row">
-                <div class="col-md-12">
-
-
-                </div>
-            </div>
-            <div class="row">
-                <div class="col-md-12">
-                    {% for post in paginator.posts %}
-                        {% include tile.html %}
-                    {% endfor %}
-
-
-
-                </div>
-            </div>
-        </div>
-
-
-
-<div class="new">
-  <div class="container">
-    <h2>Mahout on Twitter</h2>
-    <br/>
-    <div class="row">
-      <div class="col-md-12 col-sm-12 col-xs-12 text-center">
-        <div class='jekyll-twitter-plugin'><a class="twitter-timeline" 
data-width="500" data-tweet-limit="4" data-chrome="nofooter" 
href="https://twitter.com/ApacheMahout";>Tweets by ApacheMahout</a>
-<script async src="//platform.twitter.com/widgets.js" 
charset="utf-8"></script></div>
-      </div>
-      <div class="col-md-12 col-sm-12 col-xs-12 text-center twitterBtn">
-        <p style="text-align:center; margin-top: 32px; font-size: 12px; color: 
gray; font-weight: 200; font-style: italic; padding-bottom: 0;">See more tweets 
or</p>
-        <a href="https://twitter.com/ApacheMahout"; target="_blank" class="btn 
btn-primary btn-lg round" role="button">
-          Follow Mahout on &nbsp;
-          <i class="fa fa-twitter fa-lg" aria-hidden="true"></i>
-        </a>
-      </div>
-    </div>
-  </div>
-  <hr>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/navbar_main.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/navbar_main.html 
b/website-old/_includes/themes/mahout/navbar_main.html
deleted file mode 100644
index 409d1e9..0000000
--- a/website-old/_includes/themes/mahout/navbar_main.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<body class="{{ post.title | downcase | replace:' ','-' | replace:',','' | 
strip_html }}{% if page.category %} category-{{ page.category }}{% endif %}{% 
if page.layout-class %} layout-{{ page.layout-class }}{% endif %}">
-
-    <div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
-      <div class="container">
-        <div class="navbar-header">
-          <button type="button" class="navbar-toggle" data-toggle="collapse" 
data-target=".navbar-collapse">
-            <span class="sr-only">Toggle navigation</span>
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-          </button>
-          <a class="navbar-brand" href="/">
-            <img src="/assets/themes/mahout/img/mahout-logo.png" width="75" 
alt="I'm mahout">
-            Apache Mahout
-          </a>
-        </div>
-        <nav class="navbar-collapse collapse" role="navigation">
-          <ul class="nav navbar-nav navbar-right">
-
-            <li id="community">
-              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Community<b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="/developers/how-to-contribute.html">How to 
Contribute</a></li>
-                <li><a href="/issue-tracker">Issues Tracking (JIRA)</a></li>
-                <li><a href="/developers">Developers</a></li>
-                <li><a href="/mailing-lists">Mailing Lists</a></li>
-                <li><a href="/reference">References</a></li>
-              </ul>
-            </li>         
-            
-            <!-- Download -->
-            <li id="download">
-              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Download<b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://github.com/apache/mahout";>Download 
Mahout</a></li>
-              </ul>
-            </li>
-
-            <!-- Docs -->
-            <li id="docs">
-              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Docs<b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><span><b>Release</b><span></li>
-                <li><a href="/docs/0.13.0/quickstart">0.13.0</a></li>
-                <li><a href="/tbd">Older Versions</a></li>
-                <li role="separator" class="divider"></li>
-                <li><span><b>Snapshot</b>&nbsp;(development)<span></li>
-                <li><a href="/docs/0.13.1-SNAPSHOT">0.13.1-SNAPSHOT</a></li>
-              </ul>
-            </li>
-
-            <li><a href="/docs/0.13.0/quickstart">QuickStart</a></li>
-            <li><a href="https://github.com/apache/mahout";>GitHub</a></li>
-
-            <!-- Apache -->
-            <li id="apache">
-              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
-               <ul class="dropdown-menu">
-                <li><a 
href="http://www.apache.org/foundation/how-it-works.html";>Apache Software 
Foundation</a></li>
-                <li><a href="http://www.apache.org/licenses/";>Apache 
License</a></li>
-                <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
-                <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li>
-              </ul>
-            </li>
-          </ul>
-        </nav><!--/.navbar-collapse -->
-      </div>
-    </div>
-

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/page.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/page.html 
b/website-old/_includes/themes/mahout/page.html
deleted file mode 100644
index e981ad9..0000000
--- a/website-old/_includes/themes/mahout/page.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/pagination.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/pagination.html 
b/website-old/_includes/themes/mahout/pagination.html
deleted file mode 100644
index fcccc8d..0000000
--- a/website-old/_includes/themes/mahout/pagination.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<nav class="pagination-wrap">
-    <ul class="pagination">
-        {% if paginator.previous_page %}
-        <li>
-            <a href="{{ paginator.previous_page_path | prepend: site.baseurl | 
replace: '//', '/' }}" aria-label="Previous">
-                <span aria-hidden="true">&laquo;</span>
-            </a>
-        </li>
-        {% endif %}
-
-        {% for page in (1..paginator.total_pages) %}
-            {% if page == paginator.page %}
-            <li class="active">
-                <a href="#">{{ page }}</a>
-            </li>
-            {% elsif page == 1 %}
-            <li>
-                <a href="{{ paginator.previous_page_path | prepend: 
site.baseurl | replace: '//', '/' }}">{{ page }}</a>
-            </li>
-            {% else %}
-            <li>
-                <a href="{{ site.paginate_path | prepend: site.baseurl | 
replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
-            </li>
-            {% endif %}
-        {% endfor %}
-
-        {% if paginator.next_page %}
-        <li>
-            <a href="{{ paginator.next_page_path | prepend: site.baseurl | 
replace: '//', '/' }}" aria-label="Next">
-                <span aria-hidden="true">&raquo;</span>
-            </a>
-        </li>
-        {% endif %}
-    </ul>
-</nav>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/post.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/post.html 
b/website-old/_includes/themes/mahout/post.html
deleted file mode 100644
index 85cc0f4..0000000
--- a/website-old/_includes/themes/mahout/post.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% 
endif %}</h1>
-</div>
-
-<div class="row post-full">
-  <div class="col-xs-12">
-    <div class="date">
-      <span>{{ page.date | date_to_long_string }}</span>
-    </div>
-    <div class="content">
-      {{ content }}
-    </div>
-
-  {% unless page.categories == empty %}
-    <ul class="tag_box inline">
-      <li><i class="glyphicon glyphicon-open"></i></li>
-      {% assign categories_list = page.categories %}
-      {% include JB/categories_list %}
-    </ul>
-  {% endunless %}  
-
-  {% unless page.tags == empty %}
-    <ul class="tag_box inline">
-      <li><i class="glyphicon glyphicon-tags"></i></li>
-      {% assign tags_list = page.tags %}
-      {% include JB/tags_list %}
-    </ul>
-  {% endunless %}  
-  
-    <hr>
-    <ul class="pagination">
-    {% if page.previous %}
-      <li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" 
title="{{ page.previous.title }}">&laquo; Previous</a></li>
-    {% else %}
-      <li class="prev disabled"><a>&larr; Previous</a></li>
-    {% endif %}
-      <li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>
-    {% if page.next %}
-      <li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ 
page.next.title }}">Next &raquo;</a></li>
-    {% else %}
-      <li class="next disabled"><a>Next &rarr;</a>
-    {% endif %}
-    </ul>
-    <hr>
-    {% include JB/comments %}
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/settings.yml
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/settings.yml 
b/website-old/_includes/themes/mahout/settings.yml
deleted file mode 100644
index 7bf9f32..0000000
--- a/website-old/_includes/themes/mahout/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
-  name : mahout
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/tile.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/tile.html 
b/website-old/_includes/themes/mahout/tile.html
deleted file mode 100644
index 4c943c2..0000000
--- a/website-old/_includes/themes/mahout/tile.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<div class="tile">
-    {% if post.featured_image or post.featured_video_id %}
-    <a href="{{ post.url | prepend: site.baseurl }}" class="featurette">
-        {% if post.featured_image %}
-        <!--<span class="img" style="background-image: url('{{ 
post.featured_image }}');"></span> -->
-        <span class="img" style="background-image"><img src= '{{ 
post.mh_featured_image }}'></span>
-
-        {% endif %}
-
-        {% if post.featured_video_id %}
-        <iframe src="https://www.youtube.com/embed/{{ post.featured_video_id 
}}" frameborder="0" allowfullscreen></iframe>
-        {% endif %}
-    </a>
-    {% endif %}
-    <div class="inner-guts">
-        <h2><a href="{{ post.mh_featured_url  }}">{{ post.title }}</a></h2>
-        <aside>
-            {{ post.date | date: "%m.%d.%y" }}
-            {% if post.categories != empty %}
-                &middot;
-                {% for category in post.categories %}
-                    <span>{{ category }}</span>
-                {% endfor %}
-            {% endif %}
-        </aside>
-        <div class="excerpt">{{ post.excerpt }}</div>
-        <a href="{{ post.mh_featured_url }}" class="read-more btn btn-info 
btn-lg">Read More <i class="fa fa-angle-right"></i></a>
-        {% if post.categories != empty %}
-        <div class="tags">
-            {% for tag in post.tags %}
-            <span>{{ tag }}</span>
-            {% endfor %}
-        </div>
-        {% endif %}
-    </div>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout/title-group.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout/title-group.html 
b/website-old/_includes/themes/mahout/title-group.html
deleted file mode 100644
index 3daca36..0000000
--- a/website-old/_includes/themes/mahout/title-group.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{% if page.featured_image or page.featured_video_id %}
-    <div class="topper">
-        {% if page.featured_image %}
-        <span class="img" style="background-image: url('{{ page.featured_image 
}}');">
-        {% endif %}
-
-        {% if page.featured_video_id %}
-        <iframe src="https://www.youtube.com/embed/{{ page.featured_video_id 
}}" frameborder="0" allowfullscreen></iframe>
-        {% endif %}
-    </div>
-{% endif %}
-
-<div class="title-group">
-    <h1 class="special">
-        <span>
-        {% if page.title %}
-            {{ page.title }}
-        {% else %}
-            {{ site.data.global.title }}
-        {% endif %}
-        </span>
-    </h1>
-    {% if page.id %}
-    <aside>
-        {{ page.date | date: "%m.%d.%y" }}
-        {% if page.categories != empty %}
-            &middot;
-            {% for category in page.categories %}
-                <span>{{ category }}</span>
-            {% endfor %}
-        {% endif %}
-    </aside>
-    {% endif %}
-    <p class="lead">
-        {% if page.lead_text %}
-            {{ page.lead_text }}
-        {% elsif post.lead_text %}
-            {{ post.lead_text }}
-        {% else %}
-            {{ site.data.global.description }}
-        {% endif %}
-    </p>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout2/default.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout2/default.html 
b/website-old/_includes/themes/mahout2/default.html
deleted file mode 100644
index b21b9d8..0000000
--- a/website-old/_includes/themes/mahout2/default.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="utf-8">
-  <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
-  <title>{{ page.title }}</title>
-  {% if page.description %}<meta name="description" content="{{ 
page.description }}">{% endif %}
-  <meta name="author" content="{{ site.author.name }}">
-
-  <!-- Enable responsive viewport -->
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-  <!-- Bootstrap styles -->
-  <link href="{{ ASSET_PATH }}/css/bootstrap.min.css" rel="stylesheet">
-  <!-- Optional theme -->
-  <link href="{{ ASSET_PATH }}/css/bootstrap-theme.min.css" rel="stylesheet">
-  <!-- Sticky Footer -->
-  <link href="{{ ASSET_PATH }}/css/bs-sticky-footer.css" rel="stylesheet">
-
-  <!-- Custom styles -->
-  <link href="{{ ASSET_PATH }}/css/style.css" rel="stylesheet" type="text/css" 
media="all">
-
-  <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media 
queries -->
-  <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
-  <!--[if lt IE 9]>
-  <script 
src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js";></script>
-  <script 
src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js";></script>
-  <![endif]-->
-
-  <!-- Fav and touch icons -->
-  <!-- Update these with your own images
-    <link rel="shortcut icon" href="images/favicon.ico">
-    <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
-    <link rel="apple-touch-icon" sizes="72x72" 
href="images/apple-touch-icon-72x72.png">
-    <link rel="apple-touch-icon" sizes="114x114" 
href="images/apple-touch-icon-114x114.png">
-  -->
-
-  <!-- atom & rss feed -->
-  <link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" 
type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
-  <link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" 
type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
-  <script type="text/x-mathjax-config">
-  MathJax.Hub.Config({
-    tex2jax: {
-      skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
-    }
-  });
-  MathJax.Hub.Queue(function() {
-    var all = MathJax.Hub.getAllJax(), i;
-    for(i = 0; i < all.length; i += 1) {
-      all[i].SourceElement().parentNode.className += ' has-jax';
-    }
-  });
-  </script>
-  <script type="text/javascript">
-    var mathjax = document.createElement('script');
-    mathjax.type = 'text/javascript';
-    mathjax.async = true;
-
-    mathjax.src = ('https:' == document.location.protocol) ?
-        
'https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
 :
-        
'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
-
-      var s = document.getElementsByTagName('script')[0];
-    s.parentNode.insertBefore(mathjax, s);
-  </script>
-</head>
-
-<body>
-
-<div id="wrap">
-  <body class="{{ post.title | downcase | replace:' ','-' | replace:',','' | 
strip_html }}{% if page.category %} category-{{ page.category }}{% endif %}{% 
if page.layout-class %} layout-{{ page.layout-class }}{% endif %}">
-  <nav class="navbar navbar-default">
-    <div class="container-fluid">
-      <!-- Brand and toggle get grouped for better mobile display -->
-      <div class="navbar-header">
-        <button type="button" class="navbar-toggle collapsed" 
data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 
aria-expanded="false">
-          <span class="sr-only">Toggle navigation</span>
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-        </button>
-        <a class="navbar-brand" href="/">
-          <img src="{{ BASE_PATH }}/assets/img/Mahout-logo-82x100.png" 
height="30" alt="I'm mahout">
-        </a>
-      </div>
-
-      {% include navbar.html %}
-    </div><!-- /.container-fluid -->
-  </nav>
-  <div class="container">
-    {{ content }}
-  </div>
-
-
-</div>
-
-<div id="footer">
-  <div class="container">
-    <p>&copy; {{ site.time | date: '%Y' }} {{ site.author.name }}
-      with help from <a href="http://jekyllbootstrap.com"; target="_blank" 
title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a>
-      and <a href="http://getbootstrap.com"; target="_blank">Bootstrap</a>
-    </p>
-  </div>
-</div>
-
-{% include JB/analytics %}
-
-
-<!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not 
supported in IE8) -->
-<!-- Placed at the end of the document so the pages load faster -->
-<script 
src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";></script>
-<script src="{{ ASSET_PATH }}/js/bootstrap.min.js"></script>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout2/page.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout2/page.html 
b/website-old/_includes/themes/mahout2/page.html
deleted file mode 100755
index e981ad9..0000000
--- a/website-old/_includes/themes/mahout2/page.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout2/post.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout2/post.html 
b/website-old/_includes/themes/mahout2/post.html
deleted file mode 100644
index 0de6bcc..0000000
--- a/website-old/_includes/themes/mahout2/post.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout2/settings.yml
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout2/settings.yml 
b/website-old/_includes/themes/mahout2/settings.yml
deleted file mode 100644
index 615b135..0000000
--- a/website-old/_includes/themes/mahout2/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
-  name : mahout2
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/algorithm.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/algorithm.html 
b/website-old/_includes/themes/mahout3/algorithm.html
deleted file mode 100644
index 1ffdf8c..0000000
--- a/website-old/_includes/themes/mahout3/algorithm.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-<div class="row">
-    <div class="col-md-3">
-        {% include algo_navbar.html %}
-    </div>
-
-    <div class="col-md-8">
-        <div class="page-header">
-            <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-        </div>
-        {{ content }}
-    </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/default.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/default.html 
b/website-old/_includes/themes/mahout3/default.html
deleted file mode 100644
index ddd76c7..0000000
--- a/website-old/_includes/themes/mahout3/default.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <meta charset="utf-8">
-  <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
-  <title>{{ page.title }}</title>
-  {% if page.description %}<meta name="description" content="{{ 
page.description }}">{% endif %}
-  <meta name="author" content="{{ site.author.name }}">
-
-  <!-- Enable responsive viewport -->
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-  <!-- Bootstrap styles -->
-  <link href="{{ ASSET_PATH }}/css/bootstrap.min.css" rel="stylesheet">
-  <!-- Optional theme -->
-  <link href="{{ ASSET_PATH }}/css/bootstrap-theme.min.css" rel="stylesheet">
-  <!-- Sticky Footer -->
-  <link href="{{ ASSET_PATH }}/css/bs-sticky-footer.css" rel="stylesheet">
-
-  <!-- Custom styles -->
-  <link href="{{ ASSET_PATH }}/css/style.css" rel="stylesheet" type="text/css" 
media="all">
-
-  <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media 
queries -->
-  <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
-  <!--[if lt IE 9]>
-  <script 
src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js";></script>
-  <script 
src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js";></script>
-  <![endif]-->
-
-  <!-- Fav and touch icons -->
-  <!-- Update these with your own images
-    <link rel="shortcut icon" href="images/favicon.ico">
-    <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
-    <link rel="apple-touch-icon" sizes="72x72" 
href="images/apple-touch-icon-72x72.png">
-    <link rel="apple-touch-icon" sizes="114x114" 
href="images/apple-touch-icon-114x114.png">
-  -->
-
-  <!-- atom & rss feed -->
-  <link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" 
type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
-  <link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" 
type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
-  <script type="text/x-mathjax-config">
-  MathJax.Hub.Config({
-    tex2jax: {
-      skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
-    }
-  });
-  MathJax.Hub.Queue(function() {
-    var all = MathJax.Hub.getAllJax(), i;
-    for(i = 0; i < all.length; i += 1) {
-      all[i].SourceElement().parentNode.className += ' has-jax';
-    }
-  });
-  </script>
-  <script type="text/javascript">
-    var mathjax = document.createElement('script');
-    mathjax.type = 'text/javascript';
-    mathjax.async = true;
-
-    mathjax.src = ('https:' == document.location.protocol) ?
-        
'https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
 :
-        
'http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
-
-      var s = document.getElementsByTagName('script')[0];
-    s.parentNode.insertBefore(mathjax, s);
-  </script>
-</head>
-
-<nav class="navbar navbar-default navbar-fixed-top">
-  <div class="container-fluid">
-    <!-- Brand and toggle get grouped for better mobile display -->
-    <div class="navbar-header">
-      <button type="button" class="navbar-toggle collapsed" 
data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 
aria-expanded="false">
-        <span class="sr-only">Toggle navigation</span>
-        <span class="icon-bar"></span>
-        <span class="icon-bar"></span>
-        <span class="icon-bar"></span>
-      </button>
-      <a class="navbar-brand" href="/">
-        <img src="{{ BASE_PATH }}/assets/img/Mahout-logo-82x100.png" 
height="30" alt="I'm mahout">
-      </a>
-    </div>
-
-    {% include navbar.html %}
-  </div><!-- /.container-fluid -->
-</nav>
-
-<body>
-
-<div id="wrap">
-  <body class="{{ post.title | downcase | replace:' ','-' | replace:',','' | 
strip_html }}{% if page.category %} category-{{ page.category }}{% endif %}{% 
if page.layout-class %} layout-{{ page.layout-class }}{% endif %}">
-
-  <div class="container">
-    {{ content }}
-  </div>
-
-
-</div>
-
-<div id="footer">
-  <div class="container">
-    <p>&copy; {{ site.time | date: '%Y' }} {{ site.author.name }}
-      with help from <a href="http://jekyllbootstrap.com"; target="_blank" 
title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a>
-      and <a href="http://getbootstrap.com"; target="_blank">Bootstrap</a>
-    </p>
-  </div>
-</div>
-
-{% include JB/analytics %}
-
-
-<!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not 
supported in IE8) -->
-<!-- Placed at the end of the document so the pages load faster -->
-<script 
src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";></script>
-<script src="{{ ASSET_PATH }}/js/bootstrap.min.js"></script>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/mr_algorithm.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/mr_algorithm.html 
b/website-old/_includes/themes/mahout3/mr_algorithm.html
deleted file mode 100644
index 7a01d04..0000000
--- a/website-old/_includes/themes/mahout3/mr_algorithm.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-<div class="row">
-    <div class="col-xs-3">
-        {% include mr_algo_navbar.html %}
-    </div>
-
-    <div class="col-xs-8">
-        <div class="page-header">
-            <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-        </div>
-        {{ content }}
-    </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/mr_tutorial.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/mr_tutorial.html 
b/website-old/_includes/themes/mahout3/mr_tutorial.html
deleted file mode 100644
index 1ebb34d..0000000
--- a/website-old/_includes/themes/mahout3/mr_tutorial.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-<div class="row">
-    <div class="col-xs-3">
-        {% include mr_tutorial_navbar.html %}
-    </div>
-
-    <div class="col-xs-8">
-        <div class="page-header">
-            <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-        </div>
-        {{ content }}
-    </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/page.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/page.html 
b/website-old/_includes/themes/mahout3/page.html
deleted file mode 100755
index e981ad9..0000000
--- a/website-old/_includes/themes/mahout3/page.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/post.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/post.html 
b/website-old/_includes/themes/mahout3/post.html
deleted file mode 100644
index 0de6bcc..0000000
--- a/website-old/_includes/themes/mahout3/post.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="page-header">
-  <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-</div>
-
-<div class="row">
-  <div class="col-xs-12">
-    {{ content }}
-  </div>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/settings.yml
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/settings.yml 
b/website-old/_includes/themes/mahout3/settings.yml
deleted file mode 100644
index 796adc1..0000000
--- a/website-old/_includes/themes/mahout3/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
-  name : mahout3
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/_includes/themes/mahout3/tutorial.html
----------------------------------------------------------------------
diff --git a/website-old/_includes/themes/mahout3/tutorial.html 
b/website-old/_includes/themes/mahout3/tutorial.html
deleted file mode 100644
index d3597c7..0000000
--- a/website-old/_includes/themes/mahout3/tutorial.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-<div class="row">
-    <div class="col-xs-3">
-        {% include tutorial_navbar.html %}
-    </div>
-
-    <div class="col-xs-8">
-        <div class="page-header">
-            <h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline 
}}</small>{% endif %}</h1>
-        </div>
-        {{ content }}
-    </div>
-</div>

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dDirichletASN.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dDirichletASN.png 
b/website-old/assets/img/2dDirichletASN.png
deleted file mode 100644
index b4fafab..0000000
Binary files a/website-old/assets/img/2dDirichletASN.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dDirichletASN4040.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dDirichletASN4040.png 
b/website-old/assets/img/2dDirichletASN4040.png
deleted file mode 100644
index 7fb0508..0000000
Binary files a/website-old/assets/img/2dDirichletASN4040.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dDirichletSN.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dDirichletSN.png 
b/website-old/assets/img/2dDirichletSN.png
deleted file mode 100644
index 31e45a7..0000000
Binary files a/website-old/assets/img/2dDirichletSN.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dFuzzyKMeans.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dFuzzyKMeans.png 
b/website-old/assets/img/2dFuzzyKMeans.png
deleted file mode 100644
index 5e9f187..0000000
Binary files a/website-old/assets/img/2dFuzzyKMeans.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dKMeans.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dKMeans.png 
b/website-old/assets/img/2dKMeans.png
deleted file mode 100644
index 877648a..0000000
Binary files a/website-old/assets/img/2dKMeans.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/2dMeanShift.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/2dMeanShift.png 
b/website-old/assets/img/2dMeanShift.png
deleted file mode 100644
index 4322ac4..0000000
Binary files a/website-old/assets/img/2dMeanShift.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/AsymmetricSampleData.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/AsymmetricSampleData.png 
b/website-old/assets/img/AsymmetricSampleData.png
deleted file mode 100644
index fd647fc..0000000
Binary files a/website-old/assets/img/AsymmetricSampleData.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Canopy.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Canopy.png 
b/website-old/assets/img/Canopy.png
deleted file mode 100644
index 934efd7..0000000
Binary files a/website-old/assets/img/Canopy.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Canopy10.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Canopy10.png 
b/website-old/assets/img/Canopy10.png
deleted file mode 100644
index 4bb291c..0000000
Binary files a/website-old/assets/img/Canopy10.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/DirichletASN.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/DirichletASN.png 
b/website-old/assets/img/DirichletASN.png
deleted file mode 100644
index eba9444..0000000
Binary files a/website-old/assets/img/DirichletASN.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/DirichletN.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/DirichletN.png 
b/website-old/assets/img/DirichletN.png
deleted file mode 100644
index 9ae0fd3..0000000
Binary files a/website-old/assets/img/DirichletN.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/DirichletSN.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/DirichletSN.png 
b/website-old/assets/img/DirichletSN.png
deleted file mode 100644
index 50d648b..0000000
Binary files a/website-old/assets/img/DirichletSN.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/DirichletSN40.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/DirichletSN40.png 
b/website-old/assets/img/DirichletSN40.png
deleted file mode 100644
index 51f2089..0000000
Binary files a/website-old/assets/img/DirichletSN40.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Example
 implementation of k-Means provided with Mahout.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Example implementation of k-Means provided 
with Mahout.png b/website-old/assets/img/Example implementation of k-Means 
provided with Mahout.png
deleted file mode 100644
index e8b7180..0000000
Binary files a/website-old/assets/img/Example implementation of k-Means 
provided with Mahout.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/FuzzyKMeans.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/FuzzyKMeans.png 
b/website-old/assets/img/FuzzyKMeans.png
deleted file mode 100644
index 676574a..0000000
Binary files a/website-old/assets/img/FuzzyKMeans.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/KMeans.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/KMeans.png 
b/website-old/assets/img/KMeans.png
deleted file mode 100644
index 73d0a27..0000000
Binary files a/website-old/assets/img/KMeans.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Mahout-logo-164x200.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Mahout-logo-164x200.png 
b/website-old/assets/img/Mahout-logo-164x200.png
deleted file mode 100644
index 69cd409..0000000
Binary files a/website-old/assets/img/Mahout-logo-164x200.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Mahout-logo-245x300.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Mahout-logo-245x300.png 
b/website-old/assets/img/Mahout-logo-245x300.png
deleted file mode 100644
index e43bcab..0000000
Binary files a/website-old/assets/img/Mahout-logo-245x300.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Mahout-logo-327x400.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Mahout-logo-327x400.png 
b/website-old/assets/img/Mahout-logo-327x400.png
deleted file mode 100644
index f0341ac..0000000
Binary files a/website-old/assets/img/Mahout-logo-327x400.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/Mahout-logo-82x100.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/Mahout-logo-82x100.png 
b/website-old/assets/img/Mahout-logo-82x100.png
deleted file mode 100644
index 31d40c4..0000000
Binary files a/website-old/assets/img/Mahout-logo-82x100.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/MeanShift.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/MeanShift.png 
b/website-old/assets/img/MeanShift.png
deleted file mode 100644
index ea7f5e1..0000000
Binary files a/website-old/assets/img/MeanShift.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/SampleData.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/SampleData.png 
b/website-old/assets/img/SampleData.png
deleted file mode 100644
index 48c4690..0000000
Binary files a/website-old/assets/img/SampleData.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/bg.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/bg.png b/website-old/assets/img/bg.png
deleted file mode 100755
index 8c6d61b..0000000
Binary files a/website-old/assets/img/bg.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/debug-config-2.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/debug-config-2.png 
b/website-old/assets/img/debug-config-2.png
deleted file mode 100644
index 59a09b4..0000000
Binary files a/website-old/assets/img/debug-config-2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/debug-config.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/debug-config.png 
b/website-old/assets/img/debug-config.png
deleted file mode 100644
index be49441..0000000
Binary files a/website-old/assets/img/debug-config.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/download-mahout.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/download-mahout.png 
b/website-old/assets/img/download-mahout.png
deleted file mode 100644
index 77fa513..0000000
Binary files a/website-old/assets/img/download-mahout.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/download-original.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/download-original.png 
b/website-old/assets/img/download-original.png
deleted file mode 100644
index ef50ce9..0000000
Binary files a/website-old/assets/img/download-original.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/download.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/download.png 
b/website-old/assets/img/download.png
deleted file mode 100644
index ec24e77..0000000
Binary files a/website-old/assets/img/download.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/flink_squirrel_100_color.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/flink_squirrel_100_color.png 
b/website-old/assets/img/flink_squirrel_100_color.png
deleted file mode 100644
index c508e1e..0000000
Binary files a/website-old/assets/img/flink_squirrel_100_color.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/generic
 page.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/generic page.png 
b/website-old/assets/img/generic page.png
deleted file mode 100644
index 892564d..0000000
Binary files a/website-old/assets/img/generic page.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/home-wrapper-original.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/home-wrapper-original.png 
b/website-old/assets/img/home-wrapper-original.png
deleted file mode 100644
index 24b88c0..0000000
Binary files a/website-old/assets/img/home-wrapper-original.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/home-wrapper-v2.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/home-wrapper-v2.png 
b/website-old/assets/img/home-wrapper-v2.png
deleted file mode 100644
index 8789219..0000000
Binary files a/website-old/assets/img/home-wrapper-v2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/home-wrapper-v3.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/home-wrapper-v3.png 
b/website-old/assets/img/home-wrapper-v3.png
deleted file mode 100644
index bbcdd93..0000000
Binary files a/website-old/assets/img/home-wrapper-v3.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/home-wrapper.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/home-wrapper.png 
b/website-old/assets/img/home-wrapper.png
deleted file mode 100644
index 02a7b72..0000000
Binary files a/website-old/assets/img/home-wrapper.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/instruction_arrow.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/instruction_arrow.png 
b/website-old/assets/img/instruction_arrow.png
deleted file mode 100644
index 0fbc724..0000000
Binary files a/website-old/assets/img/instruction_arrow.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/logo.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/logo.png b/website-old/assets/img/logo.png
deleted file mode 100644
index c8e6c22..0000000
Binary files a/website-old/assets/img/logo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-100.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-100.png 
b/website-old/assets/img/mahout-logo-100.png
deleted file mode 100644
index 9868200..0000000
Binary files a/website-old/assets/img/mahout-logo-100.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-200.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-200.png 
b/website-old/assets/img/mahout-logo-200.png
deleted file mode 100644
index 4ef5bdd..0000000
Binary files a/website-old/assets/img/mahout-logo-200.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-300.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-300.png 
b/website-old/assets/img/mahout-logo-300.png
deleted file mode 100644
index 2fbd589..0000000
Binary files a/website-old/assets/img/mahout-logo-300.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-400.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-400.png 
b/website-old/assets/img/mahout-logo-400.png
deleted file mode 100644
index d9ac832..0000000
Binary files a/website-old/assets/img/mahout-logo-400.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-brudman.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-brudman.png 
b/website-old/assets/img/mahout-logo-brudman.png
deleted file mode 100644
index 5f515bf..0000000
Binary files a/website-old/assets/img/mahout-logo-brudman.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-poweredby-100.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-poweredby-100.png 
b/website-old/assets/img/mahout-logo-poweredby-100.png
deleted file mode 100644
index 8f8af00..0000000
Binary files a/website-old/assets/img/mahout-logo-poweredby-100.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-poweredby-55.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-poweredby-55.png 
b/website-old/assets/img/mahout-logo-poweredby-55.png
deleted file mode 100644
index 9814d31..0000000
Binary files a/website-old/assets/img/mahout-logo-poweredby-55.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-poweredby.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-poweredby.png 
b/website-old/assets/img/mahout-logo-poweredby.png
deleted file mode 100644
index 205fd60..0000000
Binary files a/website-old/assets/img/mahout-logo-poweredby.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo-transparent-400.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo-transparent-400.png 
b/website-old/assets/img/mahout-logo-transparent-400.png
deleted file mode 100644
index 583436b..0000000
Binary files a/website-old/assets/img/mahout-logo-transparent-400.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-logo.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-logo.png 
b/website-old/assets/img/mahout-logo.png
deleted file mode 100644
index b3dd9e9..0000000
Binary files a/website-old/assets/img/mahout-logo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout-lupe.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout-lupe.png 
b/website-old/assets/img/mahout-lupe.png
deleted file mode 100644
index d9d3146..0000000
Binary files a/website-old/assets/img/mahout-lupe.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout2_theme.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout2_theme.png 
b/website-old/assets/img/mahout2_theme.png
deleted file mode 100644
index 0ca4740..0000000
Binary files a/website-old/assets/img/mahout2_theme.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mahout_theme.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mahout_theme.png 
b/website-old/assets/img/mahout_theme.png
deleted file mode 100644
index 40c04ad..0000000
Binary files a/website-old/assets/img/mahout_theme.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mantle-1-original.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mantle-1-original.png 
b/website-old/assets/img/mantle-1-original.png
deleted file mode 100644
index e5544b7..0000000
Binary files a/website-old/assets/img/mantle-1-original.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mantle-asf.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mantle-asf.png 
b/website-old/assets/img/mantle-asf.png
deleted file mode 100644
index 96d73dd..0000000
Binary files a/website-old/assets/img/mantle-asf.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mantle-community.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mantle-community.png 
b/website-old/assets/img/mantle-community.png
deleted file mode 100644
index 0d93140..0000000
Binary files a/website-old/assets/img/mantle-community.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/mahout/blob/9beddd31/website-old/assets/img/mantle-hadoop.png
----------------------------------------------------------------------
diff --git a/website-old/assets/img/mantle-hadoop.png 
b/website-old/assets/img/mantle-hadoop.png
deleted file mode 100644
index 9a33f1f..0000000
Binary files a/website-old/assets/img/mantle-hadoop.png and /dev/null differ

Reply via email to