MNEMONIC-302: Add content to index page of documentation
diff --git a/src/_docs/index.md b/src/_docs/index.md
index 4fe56eb..ee9c6ea 100644
--- a/src/_docs/index.md
+++ b/src/_docs/index.md
@@ -1,13 +1,40 @@
 ---
 layout: docs
-title: Wiki
+title: Content
 permalink: /docs/index.html
 ---
 
 
-How to Contribute to Mnemonic [Wiki](https://cwiki.apache.org/confluence/display/MNEMONIC/How+to+Contribute+to+Mnemonic)
+{% for section in site.data.docs %}
+<h4>{{ section.title }}</h4>
+
+{% assign items = section.docs %}
+
+<ul>
+{% for item in items %}
+  {% assign item_url = item | prepend:"/docs/" | append:".html" %}
+
+  {% if item_url == page.url %}
+    {% assign c = "current" %}
+  {% else %}
+    {% assign c = "" %}
+  {% endif %}
+
+  {% for p in site.docs %}
+    {% if p.url == item_url %}
+      <li class="{{ c }}"><a href="{{ site.url }}{{ p.url }}">{{ p.title }}</a></li>
+      {% break %}
+    {% endif %}
+  {% endfor %}
+
+{% endfor %}
+</ul>
+
+{% endfor %}
+
+How to Contribute to Mnemonic ? -- [Wiki](https://cwiki.apache.org/confluence/display/MNEMONIC/How+to+Contribute+to+Mnemonic){:target="_blank"}
 
 
-How to Release [Wiki](https://cwiki.apache.org/confluence/display/MNEMONIC/How+to+Release)
+How to Release ? -- [Wiki](https://cwiki.apache.org/confluence/display/MNEMONIC/How+to+Release){:target="_blank"}