Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (19 loc) · 585 Bytes

categories.md

File metadata and controls

19 lines (19 loc) · 585 Bytes
layout permalink title
default
/categories
Categories

{% assign sorted_categories = site.categories | sort %} {% for category in sorted_categories %}

{% capture category_name %}{{ category | first }}{% endcapture %}

{{ category_name }}

    {% for post in site.categories[category_name] %}
  • {{post.title}}
  • {% endfor %}
{% endfor %}