Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 548 Bytes

categories.md

File metadata and controls

22 lines (20 loc) · 548 Bytes
layout title
page
Categories

{% capture categories %} {% for category in site.categories %} {{ category[0] }} {% endfor %} {% endcapture %} {% assign sortedcategories = categories | split:' ' | sort %}

{% for category in sortedcategories %}

{{ category }}

    {% for post in site.categories[category] %}
  • {{ post.date | date: "%B %d, %Y" }}: {{ post.title }}
  • {% endfor %}
{% endfor %}