Include category links on category pages.

This commit is contained in:
2016-05-23 11:16:49 -04:00
parent e7c33958b7
commit dd744af428
3 changed files with 12 additions and 10 deletions

View File

@ -0,0 +1,9 @@
<div class="category-menu">
{% for category in site.category_metadata %}
<span class="category-link">
<a href="/{{category.first}}">
{{ category.last["title"] }}
</a>
</span>
{% endfor %}
</div>