Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 530 Bytes

categories.md

File metadata and controls

22 lines (20 loc) · 530 Bytes
layout permalink title
page
/categories/
Categories
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}
<h3>{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article>
  <h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
</article>
{% endfor %}
{% endfor %}