Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 532 Bytes

categories.md

File metadata and controls

17 lines (14 loc) · 532 Bytes
layout title permalink
default
Posts by Category
/categories

>>> Blog Posts by Category

{% capture all_cats %}{% for cat in site.categories %}{{ cat | first }} {% endfor %}{% endcapture %} {% assign sorted_cats = all_cats | split: ' ' | sort %}

{% for category in sorted_cats %}

  • {{ category | upcase }} ({{site.categories[category].size}} posts) {% for post in site.categories[category] %}
    • [{{ post.title }}]({{ post.url }}) {% endfor %} {% endfor %}