Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 478 Bytes

File metadata and controls

17 lines (15 loc) · 478 Bytes
layout default
title Archive

{% assign postsByCategory = site.posts | group_by: "category" %} {% for category in postsByCategory %}

{{ category.name }}

    {% for post in category.items %}
  • {{ post.title }} - {{ post.date | date: "%Y-%m-%d" }}
  • {% endfor %}
{% endfor %}