Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 575 Bytes

categories.md

File metadata and controls

25 lines (21 loc) · 575 Bytes
layout permalink title
page
/categories/
Categories
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h4 class="category-head">{{ category_name }}</h4>
<a name="{{ category_name | slugize }}"></a>
<ul>
{% for post in site.categories[category_name] %}
	<li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></li>
{% endfor %}
</ul>
{% endfor %}