Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 686 Bytes

categories.md

File metadata and controls

27 lines (23 loc) · 686 Bytes
layout title permalink
post
Categories
/categories/
    {% for category in site.categories %}
    {% capture category_name %}{{ category | first }}{% endcapture %}

    <h3 class="category-head">{{ category_name }}</h3>
    <a name="{{ category_name | slugize }}"></a>
    
    {% for post in site.categories[category_name] %}
    
  • {% endfor %}
    {% endfor %}