Merge pull request #2 from Wei-1/develop

[MARVIN-18] Website Links Fix and Asset Update
diff --git a/README.md b/README.md
index 32c6a9d..6cec77a 100644
--- a/README.md
+++ b/README.md
@@ -17,43 +17,24 @@
 {% endcomment %}
 -->
 
-# Apache Website Template
+# Apache Marvin-AI
 
-This project contains a template web site that aims to follow all the various required
-Apache Website Policies.
+This project is the document and website of Apache Marvin-AI.
 
-This template was generated using [Jekyll](https://jekyllrb.com/).
+This template was generated using [Jekyll](https://jekyllrb.com/),
+based on [Apache Website Template](https://github.com/apache/apache-website-template)
 
-To use it, copy the `site` directory into your project.  You must also
-include licensing information from the `LICENSE` and `NOTICE` files in
-your own project.
-
-# How to deploy your project's web site
-
-(In the following instructions we assume that your project is called
-'Apache Foo'; search and replace with your actual project name.)
+# How to setup the web site locally
 
 ## Setup
 
 ```
 1. cd site
-2. svn co https://svn.apache.org/repos/asf/foo/site target
 3. sudo apt-get install rubygems ruby2.1-dev zlib1g-dev
 4. sudo gem install bundler github-pages jekyll
 5. bundle install
 ```
 
-## Add javadoc
-
-If your project supports javadoc, you can copy the generated javadoc
-into svn each time you need to re-generate.
-
-```
-1. cd ..
-2. mvn -DskipTests site
-3. mv target/site/apidocs site/target
-```
-
 ## Running locally
 
 Before opening a pull request, you can preview your contributions by
@@ -64,22 +45,9 @@
 2. Open [http://localhost:4000](http://localhost:4000)
 ```
 
-## Pushing to site
-
-```
-1. cd site/target
-2. svn status
-3. You'll need to `svn add` any new files
-4. svn ci
-```
-
-Within a few minutes, svnpubsub should kick in and you'll be able to
-see the results at
-[foo.apache.org](https://foo.apache.org/).
-
 ## Adding contributors
 
 To add a contributor to the project, or to modify existing contributors,
 edit `site/_data/contributors.yml`.
-The [project members]([http://localhost:4000/community.html#project-members]
+The [project members]([http://localhost:4000/community.html#project-members])
 list will re-generate.
diff --git a/site/_data/contributors.yml b/site/_data/contributors.yml
index 304159d..899552e 100644
--- a/site/_data/contributors.yml
+++ b/site/_data/contributors.yml
@@ -43,10 +43,10 @@
   role: PMC
 
 - name: Wei Chen
-  apacheId: Wei-1
+  apacheId: weichen
   githubId: Wei-1
   org: Change Healthcare
-  role: Contributor
+  role: Committer
 
 - name: Luciano Resende
   apacheId: lresende
diff --git a/site/_data/project.yml b/site/_data/project.yml
index 8d27ae4..1daeeb2 100644
--- a/site/_data/project.yml
+++ b/site/_data/project.yml
@@ -15,12 +15,12 @@
 #
 # Apache Project configurations
 #
-name: Apache MarvinAI
-short_name: MarvinAI
-unix_name: MarvinAI
+name: Apache Marvin-AI
+short_name: Marvin-AI
+unix_name: Marvin
 incubator_name: incubator-marvin
 incubator_slash_name: incubator/marvin
-description: Apache MarvinAI is a platform for machine learning operations (ML-Ops)
+description: Apache MarvinAI is a platform for machine learning operations (ML-Ops)!
 
 download: /marvin-platform-book/ch2_toolbox_installation/overview
 
@@ -45,7 +45,7 @@
 commits_list_archive_mailarchive: https://www.mail-archive.com/commits@marvin.apache.org/
 commits_list_archive_markmail:
 
-jira: MARVINAI
+jira: MARVIN
 
 source_repository: https://gitbox.apache.org/repos/asf/incubator-marvin.git
 source_repository_mirror: https://github.com/apache/incubator-marvin
diff --git a/site/_includes/themes/apache/_navigation.html b/site/_includes/themes/apache/_navigation.html
index 5595a03..1d5a12c 100644
--- a/site/_includes/themes/apache/_navigation.html
+++ b/site/_includes/themes/apache/_navigation.html
@@ -1,3 +1,4 @@
+
     <div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
       <div class="container">
         <div class="navbar-header">
@@ -8,14 +9,14 @@
             <span class="icon-bar"></span>
           </button>
           <a class="navbar-brand" href="/">
-            <img src="/assets/themes/apache/img/logo.png" width="80">
+            <img src="/assets/themes/apache/img/logo_white.png" width="80">
           </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 dropdown-left">
+               <ul class="dropdown-menu">
                 <li><a href="/community">Get Involved</a></li>
                 <li><a href="/community-members">Who we are</a></li>
                </ul>
@@ -36,15 +37,15 @@
       </div>
     </div>
 
-{% if page.title == "Home" %}
-<div class="jumbotron">
-  <div class="container">
-    <h1>{{ site.data.project.name }}</h1>
-    <p>{{ site.data.project.description }}</p>
+    {% if page.title == "Apache Marvin-AI" %}
+    <div class="jumbotron">
+      <div class="container">
+        <h1>{{ site.data.project.name }}</h1>
+        <p>{{ site.data.project.description }}</p>
 
-    {% if site.data.project.download %}
-       <a href="{{ site.data.project.download }}" class="btn btn-primary btn-lg bigFingerButton" role="button">Get {{ site.data.project.short_name }}</a></p>
+        {% if site.data.project.download %}
+        <a href="{{ site.data.project.download }}" class="btn btn-primary btn-lg bigFingerButton" role="button">Get {{ site.data.project.short_name }}</a></p>
+        {% endif %}
+      </div>
+    </div>
     {% endif %}
-  </div>
-</div>
-{% endif %}
diff --git a/site/_includes/themes/apache/default.html b/site/_includes/themes/apache/default.html
index 7c1ca9e..a25b519 100644
--- a/site/_includes/themes/apache/default.html
+++ b/site/_includes/themes/apache/default.html
@@ -9,22 +9,17 @@
     <!-- 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="{{ ASSET_PATH }}/bootstrap/css/bootstrap.css" rel="stylesheet">
     <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css">
     <link href="{{ ASSET_PATH }}/css/syntax.css" rel="stylesheet"  type="text/css" media="screen" />
     <!-- Le fav and touch icons -->
+    <link rel="shortcut icon" href="/assets/themes/apache/img/icon.png">
     <!-- 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">
-  -->
+      <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">
+    -->
 
   </head>
 
diff --git a/site/_includes/themes/apache/post.html b/site/_includes/themes/apache/post.html
index 2774711..db85718 100644
--- a/site/_includes/themes/apache/post.html
+++ b/site/_includes/themes/apache/post.html
@@ -11,36 +11,38 @@
       {{ content }}
     </div>
 
-  {% unless page.categories == empty %}
+    {% unless page.categories == empty %}
     <ul class="tag_box inline">
       <li><i class="icon-folder-open"></i></li>
       {% assign categories_list = page.categories %}
       {% include JB/categories_list %}
     </ul>
-  {% endunless %}  
+    {% endunless %}  
 
-  {% unless page.tags == empty %}
+    {% unless page.tags == empty %}
     <ul class="tag_box inline">
       <li><i class="icon-tags"></i></li>
       {% assign tags_list = page.tags %}
       {% include JB/tags_list %}
     </ul>
-  {% endunless %}  
+    {% endunless %}  
 
     <hr>
     <div class="pagination">
       <ul>
-      {% if page.previous %}
+        {% if page.previous %}
         <li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">&larr; Previous</a></li>
-      {% else %}
+        {% else %}
         <li class="prev disabled"><a>&larr; Previous</a></li>
-      {% endif %}
+        {% endif %}
+
         <li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>
-      {% if page.next %}
+        
+        {% if page.next %}
         <li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next &rarr;</a></li>
-      {% else %}
+        {% else %}
         <li class="next disabled"><a>Next &rarr;</a>
-      {% endif %}
+        {% endif %}
       </ul>
     </div>
     <hr>
diff --git a/site/assets/themes/apache/css/style.css b/site/assets/themes/apache/css/style.css
index 92f25bf..1c725e9 100644
--- a/site/assets/themes/apache/css/style.css
+++ b/site/assets/themes/apache/css/style.css
@@ -7,7 +7,7 @@
 }
 
 .jumbotron {
-    background-color: #3071a9;
+    background-color: #00175B;
 }
 
 .navbar-brand {
@@ -17,14 +17,14 @@
 }
 
 .navbar {
- background-color:#3071a9;
+ background-color:#00175B;
  border-bottom:0px;
- height: 50px;
+ height: 55px;
 }
 
 .navbar-inverse .navbar-nav > li > a {
  color: #ffffff;
- background-color:#3071a9;
+ background-color:#00175B;
 }
 
 .navbar-inverse .navbar-nav > li > a:hover, 
@@ -55,7 +55,7 @@
 .navbar-inverse .navbar-collapse,
 .navbar-inverse .navbar-form {
   border-color: #265380;
-  background-color: #3071a9;
+  background-color: #00175B;
 }
 
 @media (max-width: 768px) {
@@ -311,6 +311,11 @@
 .navbar-collapse.collapse {
     max-height: 50px;}
 
+#community .caret {
+    margin-left: 4px;
+    border-top-color: #FFF;
+}
+
 #apache .caret {
     margin-left: 4px;
     border-top-color: #FFF;
diff --git a/site/assets/themes/apache/img/icon.png b/site/assets/themes/apache/img/icon.png
new file mode 100644
index 0000000..fa040f0
--- /dev/null
+++ b/site/assets/themes/apache/img/icon.png
Binary files differ
diff --git a/site/assets/themes/apache/img/logo_white.png b/site/assets/themes/apache/img/logo_white.png
new file mode 100644
index 0000000..ba636dd
--- /dev/null
+++ b/site/assets/themes/apache/img/logo_white.png
Binary files differ
diff --git a/site/index.md b/site/index.md
index c377dd5..0afd502 100644
--- a/site/index.md
+++ b/site/index.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Home
+title: Apache Marvin-AI
 tagline: Apache Project !
 ---
 <!--
@@ -24,6 +24,27 @@
 
 {% include JB/setup %}
 
-## Apache MarvinAI
+![](/assets/themes/apache/img/logo.png)
 
-MarvinAI is an open source Artificial Intelligence platform that focus on helping data science team members, in an easy way, to deliver complex solutions supported by a high-scale, low-latency, language agnostic and standardized architecture while simplifying the process of exploitation and modeling.
+Branch | Status | CodeCov
+- | - | -
+[master](https://github.com/apache/incubator-marvin) | [![Build Status](https://travis-ci.org/apache/incubator-marvin.svg?branch=master)](https://travis-ci.org/apache/incubator-marvin) | [![Codecov](https://codecov.io/gh/apache/incubator-marvin/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-marvin)
+[develop](https://github.com/apache/incubator-marvin/tree/develop) | [![Build Status](https://travis-ci.org/apache/incubator-marvin.svg?branch=develop)](https://travis-ci.org/apache/incubator-marvin/branches) | [![Build Status](https://codecov.io/gh/apache/incubator-marvin/branch/develop/graph/badge.svg)](https://codecov.io/gh/apache/incubator-marvin/branch/develop)
+
+----
+
+**Marvin-AI** is an open source Artificial Intelligence platform that focus on helping data science team members, in an easy way, to deliver complex solutions supported by a high-scale, low-latency, language agnostic and standardized architecture while simplifying the process of exploitation and modeling.
+
+## Bug Reports and Feature Requests
+
+ - [Apache JIRA](https://issues.apache.org/jira/projects/MARVIN/issues/)!
+
+## Community
+
+ - Subscribe to the [user mailing list](mailto:user-subscribe@marvin.apache.org)!
+
+ - Subscribe to the [dev mailing list](mailto:dev-subscribe@marvin.apache.org)!
+
+## Documentation
+
+ - Please check our [Platform Book](/marvin-platform-book/SUMMARY)!
\ No newline at end of file
diff --git a/site/marvin-platform-book/GLOSSARY.md b/site/marvin-platform-book/GLOSSARY.md
index 5818c4e..835ca3b 100644
--- a/site/marvin-platform-book/GLOSSARY.md
+++ b/site/marvin-platform-book/GLOSSARY.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Glossary
 description: Project Community Page
 group: nav-right
 ---
diff --git a/site/marvin-platform-book/README.md b/site/marvin-platform-book/README.md
index a66b668..58d91d9 100644
--- a/site/marvin-platform-book/README.md
+++ b/site/marvin-platform-book/README.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Overview
 description: Project Community Page
 group: nav-right
 ---
@@ -27,6 +27,10 @@
 
 # Overview
 
-**Marvin** is an open source Artificial Intelligence platform that focus on helping data science team members, in an easy way, to deliver complex solutions supported by a high-scale, low-latency, language agnostic and standardized architecture while simplifying the process of exploitation and modeling.
+**Apache Marvin-AI** is an open source Artificial Intelligence platform that focus on helping data science team members, in an easy way, to deliver complex solutions supported by a high-scale, low-latency, language agnostic and standardized architecture while simplifying the process of exploitation and modeling.
 
-![](https://images-americanas.b2w.io/img/_staging/marvin/marvin.png)
\ No newline at end of file
+![](/assets/themes/apache/img/logo.png)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/SUMMARY.md b/site/marvin-platform-book/SUMMARY.md
index a943b3b..1bd9174 100644
--- a/site/marvin-platform-book/SUMMARY.md
+++ b/site/marvin-platform-book/SUMMARY.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Summary
 description: Project Community Page
 group: nav-right
 ---
@@ -27,6 +27,14 @@
 
 # Summary
 
+**Apache Marvin-AI** is an open source Artificial Intelligence platform that focus on helping data science team members, in an easy way, to deliver complex solutions supported by a high-scale, low-latency, language agnostic and standardized architecture while simplifying the process of exploitation and modeling.
+
+![](/assets/themes/apache/img/logo.png)
+
+----
+
+# Outline
+
 * [Overview](/marvin-platform-book/README)
 * [Main Components](/marvin-platform-book/ch1_main_components/overview)
     * [DAFSE](/marvin-platform-book/ch1_main_components/dasfe)
@@ -36,14 +44,14 @@
     * [Artefacts](/marvin-platform-book/ch1_main_components/artefacts)
     * [Marvin Notebook Extension](/marvin-platform-book/ch1_main_components/notebook)
 * [Installing Marvin](/marvin-platform-book/ch2_toolbox_installation/overview)
-	* [Ubuntu (Debian) Installation](/marvin-platform-book/ch2_toolbox_installation/ubuntu)
-	* [MacOS Installation](/marvin-platform-book/ch2_toolbox_installation/mac)
-	* [Vagrant Installation](/marvin-platform-book/ch2_toolbox_installation/vagrant)
+    * [Ubuntu (Debian) Installation](/marvin-platform-book/ch2_toolbox_installation/ubuntu)
+    * [MacOS Installation](/marvin-platform-book/ch2_toolbox_installation/mac)
+    * [Vagrant Installation](/marvin-platform-book/ch2_toolbox_installation/vagrant)
     * [Docker Installation](/marvin-platform-book/ch2_toolbox_installation/docker)
 * [Get Started](/marvin-platform-book/ch3_get_started/overview)
-	* [Creating a New Engine](/marvin-platform-book/ch3_get_started/create_engine)
-	* [Working in an Existent Engine](/marvin-platform-book/ch3_get_started/existent_engine)
-	* [Running an Example Engine](/marvin-platform-book/ch3_get_started/engine_examples)
+    * [Creating a New Engine](/marvin-platform-book/ch3_get_started/create_engine)
+    * [Working in an Existent Engine](/marvin-platform-book/ch3_get_started/existent_engine)
+    * [Running an Example Engine](/marvin-platform-book/ch3_get_started/engine_examples)
         * [Iris Classification Engine](/marvin-platform-book/ch3_get_started/iris_engine)
         * [SMS Spam Detector Engine](/marvin-platform-book/ch3_get_started/sms_engine)
         * [MNIST Classifier With Keras Engine](/marvin-platform-book/ch3_get_started/mnist_engine)
diff --git a/site/marvin-platform-book/ch1_main_components/artefacts.md b/site/marvin-platform-book/ch1_main_components/artefacts.md
index 7441136..f143dc4 100644
--- a/site/marvin-platform-book/ch1_main_components/artefacts.md
+++ b/site/marvin-platform-book/ch1_main_components/artefacts.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Artefacts
 
-Datasets and model(s) are shared between Engine Actions, which are persisted and versioned.
\ No newline at end of file
+Datasets and model(s) are shared between Engine Actions, which are persisted and versioned.
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/dasfe.md b/site/marvin-platform-book/ch1_main_components/dasfe.md
index e59020a..d4688b9 100644
--- a/site/marvin-platform-book/ch1_main_components/dasfe.md
+++ b/site/marvin-platform-book/ch1_main_components/dasfe.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -35,3 +35,7 @@
 In Marvin, the DASFE pattern is represented by the image below. Each box, which we call an Action, holds code written by the user.
 
 ![](https://raw.githubusercontent.com/marvin-ai/marvin-paper/master/from-exploratory-models-to-productions/fig/marvin-dase.png)
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/engine.md b/site/marvin-platform-book/ch1_main_components/engine.md
index 386ff4c..d688f4f 100644
--- a/site/marvin-platform-book/ch1_main_components/engine.md
+++ b/site/marvin-platform-book/ch1_main_components/engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Engine
 
-The Engine is the Marvin application, the result of user's implementation, including code, datasets(artifacts), models, etc. We have some [engine examples on github](https://github.com/marvin-ai/marvin-public-engines) and you could install them like described in [Running an example engine](ch3_get_started/engine_examples.md)
\ No newline at end of file
+The Engine is the Marvin application, the result of user's implementation, including code, datasets(artifacts), models, etc. We have some [engine examples on github](https://github.com/marvin-ai/marvin-public-engines) and you could install them like described in [Running an example engine](ch3_get_started/engine_examples.md)
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/engine_executor.md b/site/marvin-platform-book/ch1_main_components/engine_executor.md
index a6ad4cf..68ae165 100644
--- a/site/marvin-platform-book/ch1_main_components/engine_executor.md
+++ b/site/marvin-platform-book/ch1_main_components/engine_executor.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: engine executor
+title: Design Pattern
 description: engine executor
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Engine Executor
 
-The [engine executor](https://github.com/marvin-ai/marvin-engine-executor) is the component responsible for coordinating execution of the steps (Actions) in a Marvin engine. The engine-executor is able to communicate with engines through the gRPC protocol.
\ No newline at end of file
+The [engine executor](https://github.com/marvin-ai/marvin-engine-executor) is the component responsible for coordinating execution of the steps (Actions) in a Marvin engine. The engine-executor is able to communicate with engines through the gRPC protocol.
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/notebook.md b/site/marvin-platform-book/ch1_main_components/notebook.md
index ad43307..34a1d69 100644
--- a/site/marvin-platform-book/ch1_main_components/notebook.md
+++ b/site/marvin-platform-book/ch1_main_components/notebook.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Marvin Notebook Extension
 
-In order to facilitate development of the engine, Jupyter Notebook is integrated into Toolbox. The Marvin notebook extension allows the user to write their code in Notebooks and push updates directly to the Actions.
\ No newline at end of file
+In order to facilitate development of the engine, Jupyter Notebook is integrated into Toolbox. The Marvin notebook extension allows the user to write their code in Notebooks and push updates directly to the Actions.
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/overview.md b/site/marvin-platform-book/ch1_main_components/overview.md
index 34fe53c..5643389 100644
--- a/site/marvin-platform-book/ch1_main_components/overview.md
+++ b/site/marvin-platform-book/ch1_main_components/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,15 @@
 
 # General Overview
 
-Here we will explain the design pattern for MARVIN AI
\ No newline at end of file
+Here we will explain the design pattern for MARVIN AI
+
+* [DAFSE](/marvin-platform-book/ch1_main_components/dasfe)
+* [Toolbox](/marvin-platform-book/ch1_main_components/toolbox)
+* [Engine](/marvin-platform-book/ch1_main_components/engine)
+* [Engine Executor](/marvin-platform-book/ch1_main_components/engine_executor)
+* [Artefacts](/marvin-platform-book/ch1_main_components/artefacts)
+* [Marvin Notebook Extension](/marvin-platform-book/ch1_main_components/notebook)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch1_main_components/toolbox.md b/site/marvin-platform-book/ch1_main_components/toolbox.md
index fce8895..9387922 100644
--- a/site/marvin-platform-book/ch1_main_components/toolbox.md
+++ b/site/marvin-platform-book/ch1_main_components/toolbox.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Design Pattern
 description: Project Community Page
 group: nav-right
 ---
@@ -28,4 +28,8 @@
 # Toolbox
 
 The toolbox helps the user develop, test, and run their built engine.
-There are separate toolboxes for each language. For example, the [Python Toolbox](https://github.com/marvin-ai/marvin-python-toolbox).
\ No newline at end of file
+There are separate toolboxes for each language. For example, the [Python Toolbox](https://github.com/marvin-ai/marvin-python-toolbox).
+
+----
+
+* [Main Components](/marvin-platform-book/ch1_main_components/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch2_toolbox_installation/docker.md b/site/marvin-platform-book/ch2_toolbox_installation/docker.md
index 0b3085d..56d7fe9 100644
--- a/site/marvin-platform-book/ch2_toolbox_installation/docker.md
+++ b/site/marvin-platform-book/ch2_toolbox_installation/docker.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Installation
 description: Project Community Page
 group: nav-right
 ---
@@ -25,4 +25,8 @@
 
 {% include JB/setup %}
 
-# General Overview Docker
\ No newline at end of file
+# General Overview Docker
+
+----
+
+* [Installing Marvin](/marvin-platform-book/ch2_toolbox_installation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch2_toolbox_installation/mac.md b/site/marvin-platform-book/ch2_toolbox_installation/mac.md
index b4ffd7b..57ab312 100644
--- a/site/marvin-platform-book/ch2_toolbox_installation/mac.md
+++ b/site/marvin-platform-book/ch2_toolbox_installation/mac.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Installation
 description: Project Community Page
 group: nav-right
 ---
@@ -28,18 +28,21 @@
 # Installing Toolbox as MacOS user
 
 1. Toolbox will need some OS dependencies
+
 ```
 sudo easy_install pip
 brew install openssl graphviz
 ```
 
 2. We strongly recommend the use of VirtualEnv and VirtualEnvWrapper
+
 ```
 sudo pip install --upgrade pip
 sudo pip install virtualenvwrapper --ignore-installed six
 ```
 
 3. Spark installation (**Optional**)
+
 ```
 curl https://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.6.tgz -o /tmp/spark-2.1.1-bin-hadoop2.6.tgz
 sudo tar -xf /tmp/spark-2.1.1-bin-hadoop2.6.tgz -C /opt/
@@ -48,11 +51,13 @@
 ```
 
 If you do not have /opt directory created, before unpacking spark, run:
+
 ```
 sudo mkdir /opt
 ```
 
 4. Marvin uses dafault values for these environment variables, but you can customize them (**Optional**)
+
 ```
 echo "export WORKON_HOME=$HOME/.virtualenvs" >> $HOME/.bash_profile
 echo "export MARVIN_HOME=$HOME/marvin" >> $HOME/.bash_profile
@@ -62,6 +67,7 @@
 ```
 
 5. Install python-toolbox
+
 ```
 mkvirtualenv python-toolbox-env
 setvirtualenvproject
@@ -69,10 +75,15 @@
 ```
 
 6. Test the installation
+
 ```
 marvin test
 ```
 
 7. Youtube tutorial
 
-[![Python Toolbox Install](http://img.youtube.com/vi/2iljFG9EZ_Q/0.jpg)](https://www.youtube.com/watch?v=2iljFG9EZ_Q "Python Toolbox Install")
\ No newline at end of file
+[![Python Toolbox Install](http://img.youtube.com/vi/2iljFG9EZ_Q/0.jpg)](https://www.youtube.com/watch?v=2iljFG9EZ_Q "Python Toolbox Install")
+
+----
+
+* [Installing Marvin](/marvin-platform-book/ch2_toolbox_installation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch2_toolbox_installation/overview.md b/site/marvin-platform-book/ch2_toolbox_installation/overview.md
index f0c5462..50aff98 100644
--- a/site/marvin-platform-book/ch2_toolbox_installation/overview.md
+++ b/site/marvin-platform-book/ch2_toolbox_installation/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Installation
 description: Project Community Page
 group: nav-right
 ---
@@ -29,3 +29,11 @@
 
 Toolbox can be installed directly in Ubuntu(Debian) Distribution and MacOS, for other operating systems there is installation through Vagrant or Docker.
 
+* [Ubuntu (Debian) Installation](/marvin-platform-book/ch2_toolbox_installation/ubuntu)
+* [MacOS Installation](/marvin-platform-book/ch2_toolbox_installation/mac)
+* [Vagrant Installation](/marvin-platform-book/ch2_toolbox_installation/vagrant)
+* [Docker Installation](/marvin-platform-book/ch2_toolbox_installation/docker)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch2_toolbox_installation/ubuntu.md b/site/marvin-platform-book/ch2_toolbox_installation/ubuntu.md
index eb9115f..babf970 100644
--- a/site/marvin-platform-book/ch2_toolbox_installation/ubuntu.md
+++ b/site/marvin-platform-book/ch2_toolbox_installation/ubuntu.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Installation
 description: Project Community Page
 group: nav-right
 ---
@@ -28,17 +28,20 @@
 # Installing Toolbox as Ubuntu user
 
 1. Toolbox will need some OS dependencies
+
 ```
 sudo apt-get install libsasl2-dev python-pip graphviz -y
 ```
 
 2. We strongly recommend the use of VirtualEnv and VirtualEnvWrapper
+
 ```
 sudo pip install --upgrade pip
 sudo pip install virtualenvwrapper --ignore-installed six
 ```
 
 3. Spark installation (**Optional**)
+
 ```
 curl https://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.6.tgz -o /tmp/spark-2.1.1-bin-hadoop2.6.tgz
 sudo tar -xf /tmp/spark-2.1.1-bin-hadoop2.6.tgz -C /opt/
@@ -47,11 +50,13 @@
 ```
 
 If you do not have /opt directory created, before unpacking spark, run:
+
 ```
 sudo mkdir /opt
 ```
 
 4. Marvin uses dafault values for these environment variables, but you can customize them (**Optional**)
+
 ```
 echo "export WORKON_HOME=$HOME/.virtualenvs" >> $HOME/.bash_profile
 echo "export MARVIN_HOME=$HOME/marvin" >> $HOME/.bash_profile
@@ -61,6 +66,7 @@
 ```
 
 5. Install python-toolbox
+
 ```
 mkvirtualenv python-toolbox-env
 setvirtualenvproject
@@ -68,10 +74,15 @@
 ```
 
 6. Test the installation
+
 ```
 marvin test
 ```
 
 7. Youtube tutorial
 
-[![Python Toolbox Install](http://img.youtube.com/vi/2iljFG9EZ_Q/0.jpg)](https://www.youtube.com/watch?v=2iljFG9EZ_Q "Python Toolbox Install")
\ No newline at end of file
+[![Python Toolbox Install](http://img.youtube.com/vi/2iljFG9EZ_Q/0.jpg)](https://www.youtube.com/watch?v=2iljFG9EZ_Q "Python Toolbox Install")
+
+----
+
+* [Installing Marvin](/marvin-platform-book/ch2_toolbox_installation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch2_toolbox_installation/vagrant.md b/site/marvin-platform-book/ch2_toolbox_installation/vagrant.md
index 1d49865..1426495 100644
--- a/site/marvin-platform-book/ch2_toolbox_installation/vagrant.md
+++ b/site/marvin-platform-book/ch2_toolbox_installation/vagrant.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Installation
 description: Project Community Page
 group: nav-right
 ---
@@ -33,20 +33,28 @@
 
 
 2. Clone repository and start provision
+
 ```
 git clone https://github.com/marvin-ai/marvin-vagrant-dev.git
 cd marvin-vagrant-dev
 ```
 
 3. Prepare dev (engine creation) box
+
 ```
 vagrant up dev
 vagrant ssh dev
 ```
+
 Wait for provision process and follow interactive configuration script after access the dev box using vagrant ssh command.
 
 4. The marvin source projects will be on your home folder, to compile and use the marvin toolbox
+
 ```
 workon python-toolbox-env
 make marvin
-```
\ No newline at end of file
+```
+
+----
+
+* [Installing Marvin](/marvin-platform-book/ch2_toolbox_installation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/create_engine.md b/site/marvin-platform-book/ch3_get_started/create_engine.md
index 878651c..6550dc9 100644
--- a/site/marvin-platform-book/ch3_get_started/create_engine.md
+++ b/site/marvin-platform-book/ch3_get_started/create_engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -26,22 +26,33 @@
 {% include JB/setup %}
 
 # Creating a new engine
+
 1. To create a new engine
+
 ```
 workon python-toolbox-env
 marvin engine-generate
 ```
+
 Respond the interactive prompt and wait for the engine environment preparation, and don't forget to start dev box before if you are using vagrant.
 
 2. Test the new engine
+
 ```
 workon <new_engine_name>-env
 marvin test
 ```
+
 3. For more informations
+
 ```
 marvin --help
 ```
+
 4. Youtube Tutorial
 
 [![Creating first engine](http://img.youtube.com/vi/p7yiLh2uLlQ/0.jpg)](https://www.youtube.com/watch?v=p7yiLh2uLlQ "Creating first engine")
+
+----
+
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/engine_examples.md b/site/marvin-platform-book/ch3_get_started/engine_examples.md
index 9c0c67a..da42349 100644
--- a/site/marvin-platform-book/ch3_get_started/engine_examples.md
+++ b/site/marvin-platform-book/ch3_get_started/engine_examples.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -26,19 +26,29 @@
 {% include JB/setup %}
 
 # Running a example engine 
+
 1. Clone example engine from repository
+
 ```
 git clone https://github.com/marvin-ai/engines.git
 ```
+
 2. Generate a new marvin engine environment for Iris species engine
+
 ```
 workon python-toolbox-env
 marvin engine-generateenv ../engines/iris-species-engine/
 ```
+
 3. Run the Iris species engine
+
 ```
 workon iris-species-engine-env
-marvin engine-dryrun 
+marvin engine-dryrun
 ```
 
-For more examples: https://github.com/marvin-ai/marvin-public-engines
\ No newline at end of file
+For more examples: https://github.com/apache/incubator-marvin/tree/master/public-engines
+
+----
+
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/existent_engine.md b/site/marvin-platform-book/ch3_get_started/existent_engine.md
index 4ded9d4..3e19181 100644
--- a/site/marvin-platform-book/ch3_get_started/existent_engine.md
+++ b/site/marvin-platform-book/ch3_get_started/existent_engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -30,15 +30,24 @@
 1. If you don't have an engine locally, clone one to your local machine
 
 2. On Python Toolbox environment, set VirtualEnv and get to engine's path
+
 ```
 marvin engine-generateenv /path/to/engine/
 workon <engine_name>-env
 ```
+
 3. Test your engine
+
 ```
 marvin test
 ```
+
 4. Bring up the notebook and access it from your browser
+
 ```
 marvin notebook
-```
\ No newline at end of file
+```
+
+----
+
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/iris_engine.md b/site/marvin-platform-book/ch3_get_started/iris_engine.md
index 0f4e348..e6a2434 100644
--- a/site/marvin-platform-book/ch3_get_started/iris_engine.md
+++ b/site/marvin-platform-book/ch3_get_started/iris_engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -117,4 +117,8 @@
 
 The default log level is set to _WARNING_. You can change the log level at runtime setting another value to one of the following environment variable: `MARVIN_IRIS_SPECIES_ENGINE_LOG_LEVEL` or `LOG_LEVEL`. The available values are _CRITICAL_, _ERROR_, _WARNING_, _INFO_ and _DEBUG_.
 
-Be careful using `LOG_LEVEL`, it may affect another lib.
\ No newline at end of file
+Be careful using `LOG_LEVEL`, it may affect another lib.
+
+----
+
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/mnist_engine.md b/site/marvin-platform-book/ch3_get_started/mnist_engine.md
index 2c82dbc..c89a87d 100644
--- a/site/marvin-platform-book/ch3_get_started/mnist_engine.md
+++ b/site/marvin-platform-book/ch3_get_started/mnist_engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # MNIST Engine
 
-Text here
\ No newline at end of file
+Text here
+
+----
+
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/overview.md b/site/marvin-platform-book/ch3_get_started/overview.md
index d76a11e..4ab449c 100644
--- a/site/marvin-platform-book/ch3_get_started/overview.md
+++ b/site/marvin-platform-book/ch3_get_started/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -26,4 +26,12 @@
 {% include JB/setup %}
 
 # General Overview
-In this chapter we have some exemples of how to create and work with an engine.
\ No newline at end of file
+In this chapter we have some exemples of how to create and work with an engine.
+
+* [Creating a New Engine](/marvin-platform-book/ch3_get_started/create_engine)
+* [Working in an Existent Engine](/marvin-platform-book/ch3_get_started/existent_engine)
+* [Running an Example Engine](/marvin-platform-book/ch3_get_started/engine_examples)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch3_get_started/sms_engine.md b/site/marvin-platform-book/ch3_get_started/sms_engine.md
index 5705a22..9a166cb 100644
--- a/site/marvin-platform-book/ch3_get_started/sms_engine.md
+++ b/site/marvin-platform-book/ch3_get_started/sms_engine.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Starter Guilde
 description: Project Community Page
 group: nav-right
 ---
@@ -132,7 +132,9 @@
 
 ### Logging
 
-The default log level is set to _WARNING_. You can change the log level at runtime setting another value to one of the following environment variable: `MARVIN_SMS_SPAM_ENGINE_LOG_LEVEL` or `LOG_LEVEL`. The available values are _CRITICAL_, _ERROR_, _WARNING_, _INFO_ and _DEBUG_.
+The default log level is set to _WARNING_.
+You can change the log level at runtime setting another value to one of the following environment variable:
+`MARVIN_SMS_SPAM_ENGINE_LOG_LEVEL` or `LOG_LEVEL`. The available values are _CRITICAL_, _ERROR_, _WARNING_, _INFO_ and _DEBUG_.
 
 Be careful using `LOG_LEVEL`, it may affect another lib.
 
@@ -192,4 +194,6 @@
 process. Check the `fabfile.py` for more information. You can add new tasks or
 edit existing ones to match your provisioning and deployment pipeline.
 
+----
 
+* [Get Started](/marvin-platform-book/ch3_get_started/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/engine_cli.md b/site/marvin-platform-book/ch4_documentation/engine_cli.md
index a8c35e0..0b7f9a5 100644
--- a/site/marvin-platform-book/ch4_documentation/engine_cli.md
+++ b/site/marvin-platform-book/ch4_documentation/engine_cli.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Interface
 description: Project Community Page
 group: nav-right
 ---
@@ -31,6 +31,7 @@
 Usage: marvin [OPTIONS] COMMAND [ARGS]
 
 Options:
+
 ```
   --debug       #Enable debug mode.
   --version     #Show the version and exit.
@@ -38,6 +39,7 @@
 ```
 
 Commands:
+
 ```
   engine-generate     #Generate a new marvin engine project.
   engine-generateenv  #Generate a new marvin engine environment.
@@ -57,4 +59,8 @@
   test-checkpep8      #Check python code style.
   test-tdd            #Watch for changes to run tests automatically.
   test-tox            #Run tests using a new virtualenv.
-```
\ No newline at end of file
+```
+
+----
+
+* [Documentation](/marvin-platform-book/ch4_documentation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/generic_rest_api.md b/site/marvin-platform-book/ch4_documentation/generic_rest_api.md
index 74f86ec..62c32dd 100644
--- a/site/marvin-platform-book/ch4_documentation/generic_rest_api.md
+++ b/site/marvin-platform-book/ch4_documentation/generic_rest_api.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Interface
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Generic Rest API
 
-Text goes here
\ No newline at end of file
+Text goes here
+
+----
+
+* [Documentation](/marvin-platform-book/ch4_documentation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/overview.md b/site/marvin-platform-book/ch4_documentation/overview.md
new file mode 100644
index 0000000..35d073c
--- /dev/null
+++ b/site/marvin-platform-book/ch4_documentation/overview.md
@@ -0,0 +1,39 @@
+---
+layout: page
+title: Interface
+description: Project Community Page
+group: nav-right
+---
+<!--
+{% comment %}
+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.
+{% endcomment %}
+-->
+
+{% include JB/setup %}
+
+# General Overview
+In this chapter we dive into the interface design detail of each component.
+
+* [Toolbox CLI](/marvin-platform-book/ch4_documentation/toolbox_cli)
+* [Engine CLI](/marvin-platform-book/ch4_documentation/engine_cli)
+* [Generic Rest API](/marvin-platform-book/ch4_documentation/generic_rest_api)
+* [Toolbox Common Library](/marvin-platform-book/ch4_documentation/toolbox_common_lib)
+* [Setting Environmental Params](/marvin-platform-book/ch4_documentation/setting_params)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/setting_params.md b/site/marvin-platform-book/ch4_documentation/setting_params.md
index 2a200b1..7855c32 100644
--- a/site/marvin-platform-book/ch4_documentation/setting_params.md
+++ b/site/marvin-platform-book/ch4_documentation/setting_params.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Interface
 description: Project Community Page
 group: nav-right
 ---
@@ -34,7 +34,7 @@
 You may edit the file *engine.params* that is located at the root directory 
 of your engine. You must insert params as a dictionary:
 
-```
+```json
 {
     "login" : "marvin",
     "password": "123455"
@@ -53,3 +53,6 @@
 **Notice that  if you are running your actions using an API, you may alse set params at 
 the the API body. These params will overwrite the <i>engine.params</i> file.**
 
+----
+
+* [Documentation](/marvin-platform-book/ch4_documentation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/toolbox_cli.md b/site/marvin-platform-book/ch4_documentation/toolbox_cli.md
index 532f94b..4854b10 100644
--- a/site/marvin-platform-book/ch4_documentation/toolbox_cli.md
+++ b/site/marvin-platform-book/ch4_documentation/toolbox_cli.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Interface
 description: Project Community Page
 group: nav-right
 ---
@@ -31,6 +31,7 @@
 Usage: marvin [OPTIONS] COMMAND [ARGS]
 
 Options:
+
 ```
   --debug       #Enable debug mode.
   --version     #Show the version and exit.
@@ -38,6 +39,7 @@
 ```
 
 Commands:
+
 ```
   engine-generate     #Generate a new marvin engine project.
   engine-generateenv  #Generate a new marvin engine environment.
@@ -57,4 +59,8 @@
   test-checkpep8      #Check python code style.
   test-tdd            #Watch for changes to run tests automatically.
   test-tox            #Run tests using a new virtualenv.
-```
\ No newline at end of file
+```
+
+----
+
+* [Documentation](/marvin-platform-book/ch4_documentation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch4_documentation/toolbox_common_lib.md b/site/marvin-platform-book/ch4_documentation/toolbox_common_lib.md
index 3c0d340..aee5be3 100644
--- a/site/marvin-platform-book/ch4_documentation/toolbox_common_lib.md
+++ b/site/marvin-platform-book/ch4_documentation/toolbox_common_lib.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Interface
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Toolbox Common Lib
 
-Text goes here
\ No newline at end of file
+Text goes here
+
+----
+
+* [Documentation](/marvin-platform-book/ch4_documentation/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch5_deploying/deploying.md b/site/marvin-platform-book/ch5_deploying/deploying.md
index 4a13a3f..7eacb4e 100644
--- a/site/marvin-platform-book/ch5_deploying/deploying.md
+++ b/site/marvin-platform-book/ch5_deploying/deploying.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Deploy
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # Deploying Into Produciton
 
-Text goes here
\ No newline at end of file
+Text goes here
+
+----
+
+* [Deploying Into Production](/marvin-platform-book/ch5_deploying/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch5_deploying/overview.md b/site/marvin-platform-book/ch5_deploying/overview.md
index 34fe53c..531184a 100644
--- a/site/marvin-platform-book/ch5_deploying/overview.md
+++ b/site/marvin-platform-book/ch5_deploying/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Deploy
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,10 @@
 
 # General Overview
 
-Here we will explain the design pattern for MARVIN AI
\ No newline at end of file
+Here we will explain the design pattern for MARVIN AI
+
+* [Deploying Into Production](/marvin-platform-book/ch5_deploying/deploying)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch6_platform_architecture/overview.md b/site/marvin-platform-book/ch6_platform_architecture/overview.md
index 34fe53c..1c290b4 100644
--- a/site/marvin-platform-book/ch6_platform_architecture/overview.md
+++ b/site/marvin-platform-book/ch6_platform_architecture/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Architecture
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # General Overview
 
-Here we will explain the design pattern for MARVIN AI
\ No newline at end of file
+Here we will explain the design pattern for MARVIN AI
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch7_community/community.md b/site/marvin-platform-book/ch7_community/community.md
index 5bdc783..9d2a397 100644
--- a/site/marvin-platform-book/ch7_community/community.md
+++ b/site/marvin-platform-book/ch7_community/community.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Community
 description: Project Community Page
 group: nav-right
 ---
@@ -31,4 +31,8 @@
 
 # Roadmap
 
-# How To Contribute
\ No newline at end of file
+# How To Contribute
+
+----
+
+* [Community](/marvin-platform-book/ch7_community/overview)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch7_community/overview.md b/site/marvin-platform-book/ch7_community/overview.md
index 34fe53c..86708d1 100644
--- a/site/marvin-platform-book/ch7_community/overview.md
+++ b/site/marvin-platform-book/ch7_community/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Community
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,12 @@
 
 # General Overview
 
-Here we will explain the design pattern for MARVIN AI
\ No newline at end of file
+Here we will explain the design pattern for MARVIN AI
+
+* [Github](/marvin-platform-book/ch7_community/community#github)
+* [Roadmap](/marvin-platform-book/ch7_community/community#roadmap)
+* [How to Contribute](/marvin-platform-book/ch7_community/community#how-to-contribute)
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file
diff --git a/site/marvin-platform-book/ch8_versions/overview.md b/site/marvin-platform-book/ch8_versions/overview.md
index 34fe53c..a52c303 100644
--- a/site/marvin-platform-book/ch8_versions/overview.md
+++ b/site/marvin-platform-book/ch8_versions/overview.md
@@ -1,6 +1,6 @@
 ---
 layout: page
-title: Community Members
+title: Version
 description: Project Community Page
 group: nav-right
 ---
@@ -27,4 +27,8 @@
 
 # General Overview
 
-Here we will explain the design pattern for MARVIN AI
\ No newline at end of file
+Here we will explain the design pattern for MARVIN AI
+
+----
+
+[BACK TO SUMMARY](/marvin-platform-book/SUMMARY)
\ No newline at end of file