docs/index.html in octopress-docs-0.0.9 vs docs/index.html in octopress-docs-0.0.10
- old
+ new
@@ -1,12 +1,13 @@
---
-layout: default
+layout: docs_index
---
{% for plugin in plugin_docs %}
-<h4>{{ plugin[1].name }}</h4>
-<ul>
-{% for doc in plugin[1].docs %}
-<li><a href="{{ doc.url }}">{{ doc.title }}</a></li>
-{% endfor %}
+<ul class='plugin'>
+ <li>
+ <a href="/{{ plugin[1].url }}">{{ plugin[1].name }}</a>{% if plugin[1].description %} - {{ plugin[1].description }}{% endif %}
+ {% assign source = plugin[1].source_url %}
+ {% if source %} - {{ source | docs_source_url }}{% endif %}
+ </li>
</ul>
{% endfor %}