http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_layouts/page.html
----------------------------------------------------------------------
diff --git a/docs/_layouts/page.html b/docs/_layouts/page.html
index d1bd58a..0b1bfa6 100644
--- a/docs/_layouts/page.html
+++ b/docs/_layouts/page.html
@@ -1,6 +1,4 @@
----
-layout: default
----
+<!DOCTYPE html>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
@@ -17,7 +15,95 @@ layout: default
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
+<html lang="en">
 
-<h2>{{ page.title }}</h2>
+<head>
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1, 
shrink-to-fit=no">
+  <meta charset="utf-8">
+  <title>Samza {% if page.title %}- {{page.title}}{% endif %}</title>
+  <link rel="apple-touch-icon-precomposed" sizes="57x57" 
href="/img/favicon/apple-touch-icon-57x57.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="114x114" 
href="/img/favicon/apple-touch-icon-114x114.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="72x72" 
href="/img/favicon/apple-touch-icon-72x72.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="144x144" 
href="/img/favicon/apple-touch-icon-144x144.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="60x60" 
href="/img/favicon/apple-touch-icon-60x60.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="120x120" 
href="/img/favicon/apple-touch-icon-120x120.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="76x76" 
href="/img/favicon/apple-touch-icon-76x76.png" />
+  <link rel="apple-touch-icon-precomposed" sizes="152x152" 
href="/img/favicon/apple-touch-icon-152x152.png" />
+  <link rel="icon" type="image/png" href="/img/favicon/favicon-196x196.png" 
sizes="196x196" />
+  <link rel="icon" type="image/png" href="/img/favicon/favicon-96x96.png" 
sizes="96x96" />
+  <link rel="icon" type="image/png" href="/img/favicon/favicon-32x32.png" 
sizes="32x32" />
+  <link rel="icon" type="image/png" href="/img/favicon/favicon-16x16.png" 
sizes="16x16" />
+  <link rel="icon" type="image/png" href="/img/favicon/favicon-128.png" 
sizes="128x128" />
+  <meta name="application-name" content="https://samza.apache.org"; />
+  <meta name="msapplication-TileColor" content="#FFFFFF" />
+  <meta name="msapplication-TileImage" 
content="/img/favicon/mstile-144x144.png" />
+  <meta name="msapplication-square70x70logo" 
content="/img/favicon/mstile-70x70.png" />
+  <meta name="msapplication-square150x150logo" 
content="/img/favicon/mstile-150x150.png" />
+  <meta name="msapplication-wide310x150logo" 
content="/img/favicon/mstile-310x150.png" />
+  <meta name="msapplication-square310x310logo" 
content="/img/favicon/mstile-310x310.png" />
+  <link href="/css/ionicons.min.css" rel="stylesheet">
+  <link href="/css/google-fonts.css" rel="stylesheet">
+  <link href="/css/syntax.css" rel="stylesheet"/>
+  <link rel="stylesheet" href="/css/main.new.css" />
+</head>
 
-{{ content }}
+<body class="page">
+  {% include main-navigation.html %}
+
+  <div class="container">
+      <div class="container__toggle">
+        <i class="icon ion-md-arrow-dropleft-circle 
container__toggle-icon"></i>
+        <i class="icon ion-md-arrow-dropright-circle container__toggle-icon 
container__toggle-icon--opened"></i>
+      </div>
+      
+      <!-- There is only one menu, but made it as a no-output collection to 
grab data only -->
+      {% for menu in site.menu %}
+        {{ menu.content }}
+      {% endfor %}
+      
+      <div class="section">
+        <div class="content">
+          {% if page.hide_title != true %}
+          <h2>{{ page.title }}</h2>
+          {% endif %}
+
+          {% if page.url contains "/learn/documentation" or page.url contains 
"/releases/" %}
+
+          <div class="releases-list-container">
+
+            <span>Releases</span>
+
+            <ul class="releases-list" data-releases-list>
+              <li class="hide"><a href="{{ page.url | 
replace:"versioned","latest"}}">latest</a></li>
+              
+              {% assign releases_sorted = site.releases | sort: 'order' | 
reverse %}
+              {% for release in releases_sorted %}
+
+              <li class="hide"><a href="{{ page.url | replace:"versioned", 
release.version }}">{{ release.version }}</a></li>
+
+              {% endfor %}
+
+            </ul>
+
+          </div>
+
+          <hr class="releases-list-divider">
+
+          {% endif %}
+    
+          {{ content }}
+           
+        </div>
+      </div>
+
+  </div>
+  
+
+  <!-- footer starts here -->
+
+  {% include footer.html %}
+
+</body>
+
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_layouts/talks-and-meetups.html
----------------------------------------------------------------------
diff --git a/docs/_layouts/talks-and-meetups.html 
b/docs/_layouts/talks-and-meetups.html
new file mode 100644
index 0000000..2086f3c
--- /dev/null
+++ b/docs/_layouts/talks-and-meetups.html
@@ -0,0 +1,42 @@
+---
+layout: page
+---
+<!--
+   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.
+-->
+
+<div class="breadcrumbs-list-container">
+
+    <span>{{ page.date | date: "%B %-d, %Y"}}</span>
+
+    <ul class="breadcrumbs-list">
+        <li class=""><a href="/news/">News</a></li>
+        <li class="divider"></li>
+        <li class="">
+            <i class="icon ion-md-arrow-dropleft"></i>
+            <a href="/news/">Previous</a>
+        </li>
+        <li class="" style="float: right;">
+            <a href="/news/">Next</a>
+            <i class="icon ion-md-arrow-dropright"></i>
+        </li>
+    </ul>
+
+</div>
+
+<hr class="breadcrumbs-list-divider">
+
+{{ page.content | remove: page.excerpt }}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_meetups/dec-2018.md
----------------------------------------------------------------------
diff --git a/docs/_meetups/dec-2018.md b/docs/_meetups/dec-2018.md
new file mode 100644
index 0000000..3aa8f60
--- /dev/null
+++ b/docs/_meetups/dec-2018.md
@@ -0,0 +1,46 @@
+---
+date: December 2018
+display_date: December 2018
+meetups:
+    - name: 'How we did something awesome using samza'
+      date: December 15th, 2018
+      url: https://google.com
+      host: LinkedIn
+      image: 
+      presenters:
+        - name: Xinyu Liu
+          website: 
+          image:
+          affiliation: LinkedIn
+      abstract: We will discuss x y and z.
+    - name: Another amazing meetup
+      date: December 12th, 2018
+      url: https://google.com
+      host: LinkedIn
+      image: 
+      presenters:
+        - name: Ajith Muralidharan
+          website: 
+          image:
+          affiliation: LinkedIn
+        - name: Vivek Nelamangala
+          website:
+          image: 
+          affiliation: LinkedIn
+---
+<!--
+   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.
+-->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_meetups/july-2018.md
----------------------------------------------------------------------
diff --git a/docs/_meetups/july-2018.md b/docs/_meetups/july-2018.md
new file mode 100644
index 0000000..00ac7ea
--- /dev/null
+++ b/docs/_meetups/july-2018.md
@@ -0,0 +1,56 @@
+---
+date: July 2018
+display_date: July 2018
+meetups:
+    - name: 'Beam me up Samza: How we built a Samza Runner for Apache Beam'
+      date: July 19, 2018
+      url: https://google.com
+      host: LinkedIn
+      image: 
+      presenters:
+        - name: Xinyu Liu
+          website: 
+          image:
+          affiliation: LinkedIn
+      abstract: Apache Beam is an open source unified programming model to 
define and execute data processing pipelines
+      video:
+          url: 
https://www.youtube.com/watch?v=o5GaifLoZho&list=PLZDyxA22zzGx34wdHESUux2_V1qfkQ8zx&index=44&t=0s
+          image: https://img.youtube.com/vi/o5GaifLoZho/maxresdefault.jpg
+      slides:
+          url: 
https://www.slideshare.net/AbhishekShivanna/streamprocessingatlinkedinwithapachesamza-105630048
+    - name: Concourse - Near real-time notifications platform at LinkedIn
+      date: July 19, 2018
+      url: https://google.com
+      host: LinkedIn
+      image: 
+      presenters:
+        - name: Ajith Muralidharan
+          website: 
+          image:
+          affiliation: LinkedIn
+        - name: Vivek Nelamangala
+          website:
+          image: 
+          affiliation: LinkedIn
+      video:
+          url: 
https://www.youtube.com/watch?v=Fszo6jThq0I&list=PLZDyxA22zzGx34wdHESUux2_V1qfkQ8zx&index=2&t=0s
+          image: https://img.youtube.com/vi/Fszo6jThq0I/maxresdefault.jpg
+      slides:
+          url: 
https://www.slideshare.net/AbhishekShivanna/streamprocessingatlinkedinwithapachesamza-105630048
+---
+<!--
+   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.
+-->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_menu/index.html
----------------------------------------------------------------------
diff --git a/docs/_menu/index.html b/docs/_menu/index.html
new file mode 100644
index 0000000..bf31496
--- /dev/null
+++ b/docs/_menu/index.html
@@ -0,0 +1,160 @@
+---
+items:
+  - menu_title: Case Studies
+    get_items: case-studies
+    items:
+      - menu_title: View All
+        url: /case-studies/
+      - divider: true
+  - menu_title: Getting Started
+    items:
+      - menu_title: QuickStart
+        url: /startup/hello-samza/version/
+      - menu_title: Code Examples
+        url: /learn/tutorials/version/
+  - menu_title: Documentation
+    has_sub: true
+    has_sub_subs: true
+    items_attributes: 'data-documentation="/learn/documentation/version/"'
+    items: 
+      - menu_title: Release Notes
+        url: /startup/releases/version/release-notes.html
+      - divider: true
+  - menu_title: Talks
+    url: '/talks/'
+  - menu_title: Meetups
+    url: '/meetups/'
+  - menu_title: Releases
+    get_items: releases
+    map_title: version
+    map_url: link
+    sort: 'order'
+    reverse: true
+  - menu_title: News
+    url: '/news/'
+  - menu_title: Community
+    items:
+      - menu_title: Contact Us
+        url: '/community/mailing-lists.html'
+      - menu_title: Contributor's Corner 
+        url: '/contribute/contributors-corner.html'
+      - menu_title: PMC members and committers
+        url: '/community/committers.html'
+      - menu_title: Powered By
+        url: '/powered-by/'
+---
+<!--
+   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.
+-->
+
+
+<div class="side-navigation">
+
+  {% for item in page.items %}
+
+    {% if item.has_sub_subs %}
+      {% assign sub_class = 'side-navigation__group-has-submenus' %}
+    {% else %}
+      {% assign sub_class = '' %}
+    {% endif %}
+
+    {% if item.get_items or item.items or item.has_sub %}
+      {% assign has_sub = true  %}
+    {% else %}
+      {% assign has_sub = false %}
+    {% endif %}
+    
+    <!-- Start Group -->
+    {% if has_sub %}
+    <div class="side-navigation__group side-navigation__group--has-nested" 
data-plugin="sub-menu" 
data-sub-menu-show-class="side-navigation__group--has-nested-visible">
+    {% else %}
+    <div class="side-navigation__group">
+    {% endif %}
+
+    <!-- Make menu_title, and start items group if needed -->
+    {% if has_sub %}
+      <div class="side-navigation__group-title">
+        <i class="side-navigation__group-title-icon icon 
ion-md-arrow-dropdown"></i>
+        {{ item.menu_title }}
+      </div>
+      <div class="side-navigation__group-items {{ sub_class }}" data-sub-menu 
{{ item.items_attributes | replace: 'version', site.version }}>
+    {% else %}
+      <a class="side-navigation__group-title" href="{{ item.url | replace: 
'version', site.version }}">
+        {{ item.menu_title }}
+      </a>
+    {% endif %}
+
+    <!-- Handle sub navigation items from data -->
+    {% if item.items %}
+      {% for subitem in item.items %}
+        {% if subitem.divider %}
+          <hr>
+          {% continue %}
+        {% endif %}
+      <a class="side-navigation__group-item" href="{{ subitem.url | replace: 
'version', site.version }}">{{ subitem.menu_title }}</a>
+      {% endfor %}
+
+    {% endif %}
+
+    <!-- Handle sub nagivation from site collections -->
+    {% if item.get_items %}
+
+      {% assign subnav = site[item.get_items] %}
+
+      {% if item.sort %}
+
+      {% assign subnav = subnav | sort: item.sort %}
+
+      {% endif %}
+
+      {% if item.reverse %}
+
+      {% assign subnav = subnav | reverse %}
+
+      {% endif %}
+
+      {% for subitem in subnav %}
+        {% if subitem.exclude_from_loop %}
+          {% continue %}
+        {% endif %}
+
+        {% assign url = subitem.url %}
+        {% assign menu_title = subitem.menu_title %}
+
+        {% if item.map_title %}
+          {% assign menu_title = subitem[item.map_title] %}
+        {% endif %}
+
+        {% if item.map_url %}
+          {% assign url = subitem[item.map_url] %}
+        {% endif %}
+
+      <a class="side-navigation__group-item" href="{{ url }}">{{ menu_title 
}}</a>
+      {% endfor %}
+
+    {% endif %}
+
+    <!-- Close sub nav group -->
+    {% if has_sub %}
+      </div>
+    {% endif %}
+
+    <!-- Close menu group -->
+    </div>
+
+  {% endfor %}
+
+</div>

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_news/2018-01-31-announcing-the-release-of-apache-samza--0.14.0.md
----------------------------------------------------------------------
diff --git 
a/docs/_news/2018-01-31-announcing-the-release-of-apache-samza--0.14.0.md 
b/docs/_news/2018-01-31-announcing-the-release-of-apache-samza--0.14.0.md
new file mode 100644
index 0000000..78a2a8a
--- /dev/null
+++ b/docs/_news/2018-01-31-announcing-the-release-of-apache-samza--0.14.0.md
@@ -0,0 +1,76 @@
+---
+layout: news
+title: Announcing the release of Apache Samza 0.14.0
+icon: git-pull-request
+authors:
+    - name: Xinyu
+      website: 
+      image: 
+excerpt_separator: <!--more-->
+---
+<!--
+   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.
+-->
+
+
+Testing the excerpt
+
+<!--more-->
+
+
+Announcing the release of Apache Samza 0.14.0
+
+We are very excited to announce the release of **Apache Samza 0.14.0**  
+Samza has been powering real-time applications in production across several 
large companies (including LinkedIn, Netflix, Uber, Slack, Redfin, TripAdvisor, 
etc) for years now. Samza provides leading support for large-scale stateful 
stream processing with:
+
+-   First class support for local state (with RocksDB store). This allows a 
stateful application to scale up to 1.1 Million events/sec on a single machine 
with SSD.
+-   Support for incremental checkpointing of state instead of full snapshots. 
This enables Samza to scale to applications with very large state.
+-   A fully pluggable model for input sources (e.g. Kafka, Kinesis, DynamoDB 
streams etc.) and output systems (HDFS, Kafka, ElastiCache etc.).
+-   A fully asynchronous programming model that makes parallelizing remote 
calls efficient and effortless.
+-   High level API for expressing complex stream processing pipelines in a few 
lines of code.
+-   Flexible deployment model for running the the applications in any hosting 
environment and with cluster managers other than YARN.
+-   Features like canaries, upgrades and rollbacks that support extremely 
large deployments with minimal downtime.
+
+### New Features, Upgrades and Bug Fixes
+
+The 0.14.0 release contains the following highly anticipated features:
+
+-   Samza SQL
+-   Azure EventHubs producer, consumer and checkpoint provider
+-   AWS Kinesis consumer
+
+This release also includes improvements such as durable state in high-level 
API, Zookeeper-based deployment stability, and multi-stage batch processing, 
and bug fixes such as KafkaSystemProducer concurrent sends and flushes.  
+Overall, [65 
JIRAs](https://issues.apache.org/jira/browse/SAMZA-1109?jql=project%20%3D%20SAMZA%20AND%20status%20%3D%20Resolved%20AND%20fixVersion%20%3D%200.14.0%20ORDER%20BY%20priority%20DESC%2C%20key%20ASC)
 were resolved in this release. For more details about this release, please 
check out the [release 
notes](http://samza.apache.org/startup/releases/0.14/release-notes.html).
+
+### Community Developments
+
+We’ve made great community progress since the last release (0.13.1). We 
presented the unified data processing with Samza at the 2017 Big Data 
conference held in Spain and the Dataworks Summit in Sydney, and held a demo at 
@scale conference in San Jose. Here are the details to these conferences.
+
+-   Nov 17, 2017 - [Unified Stream Processing at Scale with Apache Samza 
(BigDataSpain 
2017)](https://www.bigdataspain.org/2017/talk/apache-samza-jake-maes) 
([Slides](https://www.slideshare.net/secret/oQe3debYJoY5q3))
+-   Sept 21, 2017 - [Unified Batch & Stream Processing with Apache Samza 
(Dataworks Summit Sydney 2017)](https://dataworkssummit.com/sydney-2017/) 
([Slides](https://www.slideshare.net/Hadoop_Summit/unified-batch-stream-processing-with-apache-samza))
+-   Aug 31, 2017 - Demo of Stream Processing@LinkedIn (@scale conference 2017) 
([Slides](https://www.slideshare.net/XinyuLiu11/samza-demo-scale-2017))
+
+In Dec 4th, we held the meetup for [Stream Processing with Apache Kafka & 
Apache 
Samza](https://www.meetup.com/Stream-Processing-Meetup-LinkedIn/events/244889719/),
 which has the following presentations for Samza:
+
+-   [Samza SQL](https://youtu.be/YDGIDO29Dqk) 
([slides](https://www.slideshare.net/SamarthShetty2/stream-processing-using-samza-sql))
+-   [Streaming data pipelines at Slack](https://youtu.be/wbS1P9ehgd0) 
([slides](https://speakerdeck.com/vananth22/streaming-data-pipelines-at-slack))
+
+As future development, we are continuing working on improvements to the new 
High Level API, SQL, Stream-Table Join and flexible deployment features.
+
+### Contribute
+
+It’s a great time to get involved. You can start by reviewing the 
[tutorials](http://samza.apache.org/startup/preview/#try-it-out), signing up 
for the [mailing list](http://samza.apache.org/community/mailing-lists.html), 
and grabbing some [newbie 
JIRAs](https://issues.apache.org/jira/issues/?jql=project%20%3D%20SAMZA%20AND%20labels%20%3D%20newbie%20AND%20status%20%3D%20Open).
  
+I’d like to close by thanking everyone who’s been involved in the project. 
It’s been a great experience to be involved in this community, and I look 
forward to its continued growth.

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_news/2018-04-28-something-else.md
----------------------------------------------------------------------
diff --git a/docs/_news/2018-04-28-something-else.md 
b/docs/_news/2018-04-28-something-else.md
new file mode 100644
index 0000000..443844b
--- /dev/null
+++ b/docs/_news/2018-04-28-something-else.md
@@ -0,0 +1,36 @@
+---
+layout: news
+title: Totally Something Else Besides Release Notes
+icon: analytics
+authors:
+    - name: Xinyu
+      website: 
+      image: 
+excerpt_separator: <!--more-->
+---
+<!--
+   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.
+-->
+
+
+Totally something else to read about other than release notes...
+
+<!--more-->
+
+
+Super excited to write something else here.
+
+

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_news/2018-05-31-announcing-the-release-of-apache-samza--0.14.1.md
----------------------------------------------------------------------
diff --git 
a/docs/_news/2018-05-31-announcing-the-release-of-apache-samza--0.14.1.md 
b/docs/_news/2018-05-31-announcing-the-release-of-apache-samza--0.14.1.md
new file mode 100644
index 0000000..244f42d
--- /dev/null
+++ b/docs/_news/2018-05-31-announcing-the-release-of-apache-samza--0.14.1.md
@@ -0,0 +1,83 @@
+---
+layout: news
+title: Announcing the release of Apache Samza 0.14.1
+icon: git-pull-request
+authors:
+    - name: Xinyu
+      website: 
+      image: 
+excerpt_separator: <!--more-->
+---
+<!--
+   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.
+-->
+
+
+A minor release which contains improvements over multiple areas: SQL, 
Standalone, Eventhub, and Host-affinity.
+
+<!--more-->
+
+
+Announcing the release of Apache Samza 0.14.1
+
+We are very excited to announce the release of **Apache Samza 0.14.1**  
+Samza has been powering real-time applications in production across several 
large companies (including LinkedIn, Netflix, Uber, Slack, Redfin, TripAdvisor, 
etc) for years now. Samza provides leading support for large-scale stateful 
stream processing with:
+
+-   First class support for local state (with RocksDB store). This allows a 
stateful application to scale up to 1.1 Million events/sec on a single machine 
with SSD.
+-   Support for incremental checkpointing of state instead of full snapshots. 
This enables Samza to scale to applications with very large state.
+-   A fully pluggable model for input sources (e.g. Kafka, Kinesis, DynamoDB 
streams etc.) and output systems (HDFS, Kafka, ElastiCache etc.).
+-   A fully asynchronous programming model that makes parallelizing remote 
calls efficient and effortless.
+-   High level API for expressing complex stream processing pipelines in a few 
lines of code.
+-   Flexible deployment model for running the the applications in any hosting 
environment and with cluster managers other than YARN.
+-   Features like canaries, upgrades and rollbacks that support extremely 
large deployments with minimal downtime.
+
+### Enhancements, Upgrades and Bug Fixes
+
+This is a minor release which contains improvements over multiple areas. In 
particular:  
+
+-   **SQL**
+-   [SAMZA-1681](https://issues.apache.org/jira/browse/SAMZA-1681) Add support 
for handling older record schema versions in AvroRelConverter
+-   [SAMZA-1671](https://issues.apache.org/jira/browse/SAMZA-1671) Add insert 
into table support
+-   [SAMZA-1651](https://issues.apache.org/jira/browse/SAMZA-1651) Implement 
GROUP BY SQL operator
+-   **Standalone**
+-   [SAMZA-1689](https://issues.apache.org/jira/browse/SAMZA-1689) Add 
validations before state transitions in ZkBarrierForVersionUpgrade
+-   [SAMZA-1686](https://issues.apache.org/jira/browse/SAMZA-1686) Set finite 
operation timeout when creating zkClient
+-   [SAMZA-1667](https://issues.apache.org/jira/browse/SAMZA-1667) Skip 
storing configuration as a part of JobModel in zookeeper data nodes
+-   [SAMZA-1647](https://issues.apache.org/jira/browse/SAMZA-1647) Fix NPE in 
JobModelExpired event handler
+-   **Eventhub**
+-   [SAMZA-1688](https://issues.apache.org/jira/browse/SAMZA-1688) Use per 
partition eventhubs client
+-   [SAMZA-1676](https://issues.apache.org/jira/browse/SAMZA-1676) 
Miscellaneous fix and improvement for eventhubs system
+-   [SAMZA-1656](https://issues.apache.org/jira/browse/SAMZA-1656) 
EventHubSystemAdmin does not fetch metadata for valid streams
+-   **Host-affinity**
+-   [SAMZA-1687](https://issues.apache.org/jira/browse/SAMZA-1687) Prioritize 
preferred host requests over ANY-HOST requests
+-   [SAMZA-1649](https://issues.apache.org/jira/browse/SAMZA-1649) Improve 
host-aware allocation to account for strict locality
+
+In addition, Samza is also upgraded to support Kafka version 0.11 in this 
release.  
+Overall, [51 
JIRAs](https://issues.apache.org/jira/projects/SAMZA/versions/12343155) were 
resolved in this release. A source download of the 0.14.1 release is available 
[here](http://www.apache.org/dyn/closer.cgi/samza/0.14.1). The release JARs are 
also available in Apache’s Maven repository. See Samza’s 
[download](http://samza.apache.org/startup/download/) page for details and 
Samza’s [feature preview](https://samza.apache.org/startup/preview/) for new 
features. We requires JDK version newer than 1.8.0_111 when running 0.14.1 
release for users who are using Scala 2.12.
+
+### Community Developments
+
+In March 21th, we held the meetup for [Stream Processing with Apache Kafka & 
Apache 
Samza](https://www.meetup.com/Stream-Processing-Meetup-LinkedIn/events/248309045/),
 which has the following presentations for Samza:
+
+-   [Conquering the Lambda architecture in LinkedIn metrics platform with 
Apache Calcite and Apache Samza](https://www.youtube.com/watch?v=ZPWInJ4USIU) 
([Slides](https://www.slideshare.net/KhaiTran17/conquering-the-lambda-architecture-in-linkedin-metrics-platform-with-apache-calcite-and-apache-samza))
+-   [Building Venice with Apache Kafka & 
Samza](https://www.youtube.com/watch?v=Usz8E4S-hZE)
+
+In industry, Samza got new adopters, including [Ntent](http://www.ntent.com) 
and [Movico](https://movio.co/en/).
+
+### Contribute
+
+It’s a great time to get involved. You can start by reviewing the 
[tutorials](http://samza.apache.org/startup/preview/#try-it-out), signing up 
for the [mailing list](http://samza.apache.org/community/mailing-lists.html), 
and grabbing some [newbie 
JIRAs](https://issues.apache.org/jira/issues/?jql=project%20%3D%20SAMZA%20AND%20labels%20%3D%20newbie%20AND%20status%20%3D%20Open).
  
+I’d like to close by thanking everyone who’s been involved in the project. 
It’s been a great experience to be involved in this community, and I look 
forward to its continued growth.

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_news/TEMPLATE.md
----------------------------------------------------------------------
diff --git a/docs/_news/TEMPLATE.md b/docs/_news/TEMPLATE.md
new file mode 100644
index 0000000..84faf18
--- /dev/null
+++ b/docs/_news/TEMPLATE.md
@@ -0,0 +1,38 @@
+---
+exclude_from_loop: true # useful for drafts 
+layout: news
+title: Your title with dashes for spaces and special chars # name the file 
with YYYY-DD-MM-your-title-with-dashes-for-spaces-and-special-chars.md
+icon: git-pull-request # iconic icons https://ionicons.com/
+authors: #optional
+    - name: 
+      website: #optional
+      image: #optional
+    - name: 
+      website: 
+      image: 
+excerpt_separator: <!--more-->
+---
+<!--
+   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.
+-->
+
+
+An excerpt which should be brief to provide the jist of what the article will 
be about.
+
+<!--more-->
+
+
+All the content of the news article, which can be both html and markdown.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_news/index.md
----------------------------------------------------------------------
diff --git a/docs/_news/index.md b/docs/_news/index.md
new file mode 100644
index 0000000..231f63c
--- /dev/null
+++ b/docs/_news/index.md
@@ -0,0 +1,54 @@
+---
+layout: page
+title: Samza News
+exclude_from_loop: true
+---
+<!--
+   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.
+-->
+
+<div class="news_cards">
+
+  {% assign sorted = (site.news | sort: 'date') | reverse %}
+
+  {% for post in sorted %}
+
+    {% if post.exclude_from_loop %}
+      {% continue %}
+    {% endif %}
+
+    {% assign icon = "ion-md-paper" %}
+
+    {% if post.icon %}
+
+    {% assign icon = "ion-md-" | append: post.icon %}
+
+    {% endif %}
+
+  <a class="news__card" href="{{ post.url }}">
+    <i class="news__card-icon icon {{ icon }}"></i>
+    <div class="news__card-date">{{ post.date | date: "%B %-d, %Y" }}</div>
+    <div class="news__card-title">{{ post.title }}</div>
+    {% if post.excerpt %}
+    <div class="news__card-description">
+      {{ post.excerpt }}
+    </div>
+    {% endif %}
+    <span class="news__card-button">Read more</span>
+  </a>
+  {% endfor %}
+
+</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_powered-by/TEMPLATE.md
----------------------------------------------------------------------
diff --git a/docs/_powered-by/TEMPLATE.md b/docs/_powered-by/TEMPLATE.md
new file mode 100644
index 0000000..8225f7e
--- /dev/null
+++ b/docs/_powered-by/TEMPLATE.md
@@ -0,0 +1,23 @@
+---
+exclude_from_loop: true # wont be able to find this page, useful for draft
+name: Company # formatted name of company eg LinkedIn
+domain: company.com # just the domain, no protocol
+---
+<!--
+   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.
+-->
+
+The description to show which can be html or markdown, but remember when 
referencing the <a class="external-link" href="https://www.company.com/"; 
rel="nofollow">Company</a>, we should be using a `rel="nofollow"` attribute in 
an anchor tag `a`.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_powered-by/intuit.md
----------------------------------------------------------------------
diff --git a/docs/_powered-by/intuit.md b/docs/_powered-by/intuit.md
new file mode 100644
index 0000000..e77eddc
--- /dev/null
+++ b/docs/_powered-by/intuit.md
@@ -0,0 +1,22 @@
+---
+name: Intuit
+domain: intuit.com
+---
+<!--
+   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.
+-->
+
+At <a class="external-link" href="https://www.intuit.com/"; 
rel="nofollow">Intuit</a>, we use Samza to enrich events with more contextual 
data from various sources (CMDB, Change Management, Incident Management, 
Problem Management). This gives us more meaningful events that an operations 
centre person can act on.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_powered-by/linkedin.md
----------------------------------------------------------------------
diff --git a/docs/_powered-by/linkedin.md b/docs/_powered-by/linkedin.md
new file mode 100644
index 0000000..2ba4c40
--- /dev/null
+++ b/docs/_powered-by/linkedin.md
@@ -0,0 +1,22 @@
+---
+name: LinkedIn
+domain: linkedin.com
+---
+<!--
+   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.
+-->
+
+Samza was originally developed at <a class="external-link" 
href="https://linkedin.com/"; rel="nofollow">LinkedIn</a>. It's currently used 
to process tracking data, service log data, and for data ingestion pipelines 
for realtime services.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_powered-by/mobileaware.md
----------------------------------------------------------------------
diff --git a/docs/_powered-by/mobileaware.md b/docs/_powered-by/mobileaware.md
new file mode 100644
index 0000000..ea07155
--- /dev/null
+++ b/docs/_powered-by/mobileaware.md
@@ -0,0 +1,22 @@
+---
+name: MobileAware
+domain: mobileaware.com
+---
+<!--
+   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.
+-->
+
+At <a class="external-link" href="https://www.mobileaware.com/"; 
rel="nofollow">MobileAware</a>, we use Samza to enrich events with more 
contextual data from various sources (CMDB, Change Management, Incident 
Management, Problem Management). This gives us more meaningful events that an 
operations centre person can act on.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.10.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.10.md b/docs/_releases/0.10.md
new file mode 100644
index 0000000..d4e8850
--- /dev/null
+++ b/docs/_releases/0.10.md
@@ -0,0 +1,21 @@
+---
+version: '0.10'
+order: 10
+link: /learn/documentation/0.10/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.11.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.11.md b/docs/_releases/0.11.md
new file mode 100644
index 0000000..6f21b05
--- /dev/null
+++ b/docs/_releases/0.11.md
@@ -0,0 +1,21 @@
+---
+version: '0.11'
+order: 11
+link: /learn/documentation/0.11/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.12.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.12.md b/docs/_releases/0.12.md
new file mode 100644
index 0000000..bd9eb3b
--- /dev/null
+++ b/docs/_releases/0.12.md
@@ -0,0 +1,21 @@
+---
+version: '0.12'
+order: 12
+link: /learn/documentation/0.12/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.13.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.13.md b/docs/_releases/0.13.md
new file mode 100644
index 0000000..65e64f0
--- /dev/null
+++ b/docs/_releases/0.13.md
@@ -0,0 +1,21 @@
+---
+version: '0.13'
+order: 13
+link: /learn/documentation/0.13/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.14.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.14.md b/docs/_releases/0.14.md
new file mode 100644
index 0000000..8a0ce10
--- /dev/null
+++ b/docs/_releases/0.14.md
@@ -0,0 +1,21 @@
+---
+version: '0.14'
+order: 14
+link: /learn/documentation/0.14/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.7.0.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.7.0.md b/docs/_releases/0.7.0.md
new file mode 100644
index 0000000..a46019e
--- /dev/null
+++ b/docs/_releases/0.7.0.md
@@ -0,0 +1,21 @@
+---
+version: '0.7.0'
+order: 7
+link: /learn/documentation/0.7.0/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.8.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.8.md b/docs/_releases/0.8.md
new file mode 100644
index 0000000..3438356
--- /dev/null
+++ b/docs/_releases/0.8.md
@@ -0,0 +1,21 @@
+---
+version: '0.8'
+order: 8
+link: /learn/documentation/0.8/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/0.9.md
----------------------------------------------------------------------
diff --git a/docs/_releases/0.9.md b/docs/_releases/0.9.md
new file mode 100644
index 0000000..71f3659
--- /dev/null
+++ b/docs/_releases/0.9.md
@@ -0,0 +1,21 @@
+---
+version: '0.9'
+order: 9
+link: /learn/documentation/0.9/introduction/background.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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_releases/TEMPLATE.md
----------------------------------------------------------------------
diff --git a/docs/_releases/TEMPLATE.md b/docs/_releases/TEMPLATE.md
new file mode 100644
index 0000000..0fdb4fe
--- /dev/null
+++ b/docs/_releases/TEMPLATE.md
@@ -0,0 +1,21 @@
+---
+exclude_from_loop: true # useful for drafts
+version: '0.7' # make sure it is a string
+order: 7 # this matters for sorting... since .7 needs to be thought of as an 
earlier version than .14... if you need to do 1.7 do 107, 1.14 as 114.
+---
+<!--
+   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.
+-->

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_talks/TEMPLATE.md
----------------------------------------------------------------------
diff --git a/docs/_talks/TEMPLATE.md b/docs/_talks/TEMPLATE.md
new file mode 100644
index 0000000..5c1de4e
--- /dev/null
+++ b/docs/_talks/TEMPLATE.md
@@ -0,0 +1,34 @@
+---
+exclude_from_loop: true # if you dont want anyone to find this page, useful 
for a draft
+date: September 2018 # a jekyll date, used for sorting
+display_date: September 25th, 2018 # would use a date format but sometimes 
date is missing a DAY and it shows up with 1st as default
+event:
+  name: TALK TITLE
+  url: https://google.com # HTTP... to the event page
+  host: Some Cool Summit 2018 # Name of group/company hosting the event
+  by: Bob Sherman # Name of talk presenter (optional)
+  image: # HTTP... url to image of event (optional)
+video:
+  url: # HTTP... url to video of talk
+  image: # HTTP... url to IMAGE of video 
#https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg
+slides:
+  url: # HTTP... url to slides
+---
+<!--
+   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.
+-->
+
+A possible description that is either in markdown or html, and is totally 
optional.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_talks/june-2018--bangalore-kafka-group.md
----------------------------------------------------------------------
diff --git a/docs/_talks/june-2018--bangalore-kafka-group.md 
b/docs/_talks/june-2018--bangalore-kafka-group.md
new file mode 100644
index 0000000..f88a646
--- /dev/null
+++ b/docs/_talks/june-2018--bangalore-kafka-group.md
@@ -0,0 +1,30 @@
+---
+date: June 2018
+display_date: June 2018
+event:
+  name: Stream Processing at LinkedIn with Apache Samza
+  url: https://www.meetup.com/Bangalore-Apache-Kafka-Group/events/251707854/
+  host: Bangalore Kafka Group
+  image: 
+video:
+  url: 
+  image:
+slides:
+  url: 
https://www.slideshare.net/AbhishekShivanna/streamprocessingatlinkedinwithapachesamza-105630048
+---
+<!--
+   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.
+-->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_talks/november-2017-big-data-span-2017.md
----------------------------------------------------------------------
diff --git a/docs/_talks/november-2017-big-data-span-2017.md 
b/docs/_talks/november-2017-big-data-span-2017.md
new file mode 100644
index 0000000..dc1b660
--- /dev/null
+++ b/docs/_talks/november-2017-big-data-span-2017.md
@@ -0,0 +1,30 @@
+---
+date: November 2017
+display_date: November 2017
+event:
+  name: Unified Stream Processing at Scale with Apache Samza
+  url: https://www.meetup.com/Bangalore-Apache-Kafka-Group/events/251707854/
+  host: BigDataSpain 2017
+  image:
+video:
+  url:
+  image:
+slides:
+  url: 
https://www.slideshare.net/AbhishekShivanna/streamprocessingatlinkedinwithapachesamza-105630048
+---
+<!--
+   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.
+-->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_talks/november-2018--totally-awesome-summit.md
----------------------------------------------------------------------
diff --git a/docs/_talks/november-2018--totally-awesome-summit.md 
b/docs/_talks/november-2018--totally-awesome-summit.md
new file mode 100644
index 0000000..53676f8
--- /dev/null
+++ b/docs/_talks/november-2018--totally-awesome-summit.md
@@ -0,0 +1,30 @@
+---
+date: November 12th, 2018
+display_date: November 12th, 2018
+event:
+  name: Totally awesome event
+  url: https://google.com
+  host: Totally awesome summit
+  image:
+video:
+  url:
+  image:
+slides:
+  url:
+---
+<!--
+   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.
+-->
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/_talks/september-21-2017--dataworks-summit-sydney-2017.md
----------------------------------------------------------------------
diff --git a/docs/_talks/september-21-2017--dataworks-summit-sydney-2017.md 
b/docs/_talks/september-21-2017--dataworks-summit-sydney-2017.md
new file mode 100644
index 0000000..eac68be
--- /dev/null
+++ b/docs/_talks/september-21-2017--dataworks-summit-sydney-2017.md
@@ -0,0 +1,33 @@
+---
+date: Sept 21, 2017
+display_date: Sept 21, 2017
+event:
+  name: Unified Batch & Stream Processing with Apache Samza
+  url: https://www.meetup.com/Bangalore-Apache-Kafka-Group/events/251707854/
+  host: Dataworks Summit Sydney 2017
+  by: Bob Sherman
+  image: 
+video:
+  url:
+  image:
+slides:
+  url: 
https://www.slideshare.net/AbhishekShivanna/streamprocessingatlinkedinwithapachesamza-105630048
+---
+<!--
+   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.
+-->
+
+A description of the talk, if desired which can be in markdown or html.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/community/committers-old.md
----------------------------------------------------------------------
diff --git a/docs/community/committers-old.md b/docs/community/committers-old.md
new file mode 100644
index 0000000..222a661
--- /dev/null
+++ b/docs/community/committers-old.md
@@ -0,0 +1,103 @@
+---
+layout: page
+title: Committers
+---
+<!--
+   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.
+-->
+
+**Yi Pan**<br/>
+Committer, PMC member and VP of Apache Samza<br/>
+<a href="https://www.linkedin.com/pub/yi-pan/9/85a/238"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/nickpan47"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Navina Ramesh**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/rnavina"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/navina_r"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Jagadish Venkatraman**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/jagadishvenkat"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/vjagadish1989"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Jake Maes**<br/>
+Committer, and PMC member<br/>
+<a href="www.linkedin.com/in/jacobmaes" target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/jakemaes"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Xinyu Liu**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/xinyu-liu-b0b21648"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
+
+**Chris Riccomini**<br/>
+Committer, and PMC member<br/>
+<a href="http://www.linkedin.com/in/riccomini"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="http://twitter.com/criccomini"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Chinmay Soman**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/pub/chinmay-soman/5/610/35"; 
target="_blank"><i class="fa fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/ChinmaySoman"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Yan Fang**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/yanfangus"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/yanfang724"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Garry Turkington**<br/>
+Committer, and PMC member<br/>
+<a href="http://uk.linkedin.com/in/garryturkington"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
+<a href="http://twitter.com/garryturk"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Jakob Homan**<br/>
+Apache Member, Committer, and PMC member<br/>
+<a href="http://www.linkedin.com/in/jghoman"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="http://twitter.com/blueboxtraveler"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Martin Kleppmann**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/martinkleppmann"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/martinkl"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Jay Kreps**<br/>
+Committer, and PMC member<br/>
+<a href="http://www.linkedin.com/in/jaykreps"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="http://twitter.com/jaykreps"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Sriram Subramanian**<br/>
+Committer, and PMC member<br/>
+<a href="http://www.linkedin.com/pub/sriram-subramanian/3/52a/162"; 
target="_blank"><i class="fa fa-linkedin committer-icon"></i></a>
+<a href="http://twitter.com/sriramsub1"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Zhijie Shen**<br/>
+Committer, and PMC member<br/>
+<a href="https://www.linkedin.com/in/zjshen"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/zhijieshen"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
+
+**Boris Shkolnik**<br/>
+Committer<br/>
+<a href="https://www.linkedin.com/in/boryas"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+<a href="https://twitter.com/sborya"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
+
+**Prateek Maheshwari**<br/>
+Committer<br/>
+<a href="https://www.linkedin.com/in/mprateek"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+
+**Wei Song**<br/>
+Committer<br/>
+<a href="https://www.linkedin.com/in/weisong44"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
+

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/community/committers.html
----------------------------------------------------------------------
diff --git a/docs/community/committers.html b/docs/community/committers.html
new file mode 100644
index 0000000..d155fb9
--- /dev/null
+++ b/docs/community/committers.html
@@ -0,0 +1,97 @@
+---
+layout: page
+title: Committers
+exclude_from_loop: true
+---
+<!--
+   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.
+-->
+
+A list of people who have contributed to Samza
+
+<hr class="committers-hr"/>
+
+<ul class="committers">
+
+  {% assign committers = site.committers | sort: 'order' %}
+
+  {% for committer in committers %}
+    {% if committer.exclude_from_loop %}
+        {% continue %}
+    {% endif %}
+
+  <li class="committer">
+
+    <span class="committer-image" title="{{ committer.name }}">
+
+      {% if committer.image %}
+      <span style="background-image: url('{{ committer.image }}');"></span>
+      {% elsif committer.github %}
+      <a href="https://github.com/{{ committer.github }}" target="_blank" 
rel="nofollow"><span style="background-image: url('https://github.com/{{ 
committer.github}}.png?size=256');"></span></a>
+      {% else %}
+      <span style="background-image: 
url('https://api.adorable.io/avatars/256/{{ committer.name }}');"></span>
+      {% endif %}
+      
+    </span>
+    <div class="committer-info">
+      <div class="committer-name">
+          {{ committer.name }}
+      </div>
+      <div class="committer-roles">
+          {% if committer.samza_title %}
+          <span>{{ committer.samza_title }}</span>
+          {% endif %}
+
+          {% if committer.apache_member %}
+          <span>Apache Member</span>
+          {% endif %}
+
+          {% if committer.pmc_member %}
+          <span>PMC Member</span>
+          {% endif %}
+
+          <span>Committer</span>
+      </div>
+      <div class="committer-links">
+
+          {% if committer.website %}
+          <a href="{{ committer.website}}" class="committer-link" 
rel="nofollow" target="_blank">
+            <i class="committer-icon icon ion-md-globe"></i>
+          </a>
+          {% endif %}
+
+          {% if committer.linkedin %}
+          <a href="{{ committer.linkedin}}" class="committer-link" 
rel="nofollow" target="_blank">
+            <i class="committer-icon icon ion-logo-linkedin"></i>
+          </a>
+          {% endif %}
+
+          {% if committer.twitter %}
+          <a href="https://twitter.com/{{ committer.twitter}}" 
class="committer-link" rel="nofollow" target="_blank">
+            <i class="committer-icon icon ion-logo-twitter"></i>
+          </a>
+          {% endif %}
+
+      </div>
+      
+
+     
+    </div>
+  </li>
+
+  {% endfor %}
+
+</ul>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/samza/blob/b8058af0/docs/community/committers.md
----------------------------------------------------------------------
diff --git a/docs/community/committers.md b/docs/community/committers.md
deleted file mode 100644
index 222a661..0000000
--- a/docs/community/committers.md
+++ /dev/null
@@ -1,103 +0,0 @@
----
-layout: page
-title: Committers
----
-<!--
-   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.
--->
-
-**Yi Pan**<br/>
-Committer, PMC member and VP of Apache Samza<br/>
-<a href="https://www.linkedin.com/pub/yi-pan/9/85a/238"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/nickpan47"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Navina Ramesh**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/rnavina"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/navina_r"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Jagadish Venkatraman**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/jagadishvenkat"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/vjagadish1989"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Jake Maes**<br/>
-Committer, and PMC member<br/>
-<a href="www.linkedin.com/in/jacobmaes" target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/jakemaes"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Xinyu Liu**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/xinyu-liu-b0b21648"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
-
-**Chris Riccomini**<br/>
-Committer, and PMC member<br/>
-<a href="http://www.linkedin.com/in/riccomini"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="http://twitter.com/criccomini"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Chinmay Soman**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/pub/chinmay-soman/5/610/35"; 
target="_blank"><i class="fa fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/ChinmaySoman"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Yan Fang**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/yanfangus"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/yanfang724"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Garry Turkington**<br/>
-Committer, and PMC member<br/>
-<a href="http://uk.linkedin.com/in/garryturkington"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
-<a href="http://twitter.com/garryturk"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Jakob Homan**<br/>
-Apache Member, Committer, and PMC member<br/>
-<a href="http://www.linkedin.com/in/jghoman"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="http://twitter.com/blueboxtraveler"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Martin Kleppmann**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/martinkleppmann"; target="_blank"><i 
class="fa fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/martinkl"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Jay Kreps**<br/>
-Committer, and PMC member<br/>
-<a href="http://www.linkedin.com/in/jaykreps"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="http://twitter.com/jaykreps"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Sriram Subramanian**<br/>
-Committer, and PMC member<br/>
-<a href="http://www.linkedin.com/pub/sriram-subramanian/3/52a/162"; 
target="_blank"><i class="fa fa-linkedin committer-icon"></i></a>
-<a href="http://twitter.com/sriramsub1"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Zhijie Shen**<br/>
-Committer, and PMC member<br/>
-<a href="https://www.linkedin.com/in/zjshen"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/zhijieshen"; target="_blank"><i class="fa 
fa-twitter committer-icon"></i></a>
-
-**Boris Shkolnik**<br/>
-Committer<br/>
-<a href="https://www.linkedin.com/in/boryas"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-<a href="https://twitter.com/sborya"; target="_blank"><i class="fa fa-twitter 
committer-icon"></i></a>
-
-**Prateek Maheshwari**<br/>
-Committer<br/>
-<a href="https://www.linkedin.com/in/mprateek"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-
-**Wei Song**<br/>
-Committer<br/>
-<a href="https://www.linkedin.com/in/weisong44"; target="_blank"><i class="fa 
fa-linkedin committer-icon"></i></a>
-

Reply via email to