Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 643 Bytes

category_index.md

File metadata and controls

24 lines (23 loc) · 643 Bytes
layout title
page
Categories

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

{{ category[0] }}

    {% for post in site.posts %} {% if post.categories contains category[0] %}
  • {{ post.title }} {{ post.date | date_to_string }}
  • {% endif %} {% endfor %}
{% endfor %}

Uncategorised

    {% for post in site.posts %} {% if post.categories.size == 0 %}
  • {{ post.title }} {{ post.date | date_to_string }}
  • {% endif %} {% endfor %}