Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 591 Bytes

File metadata and controls

30 lines (25 loc) · 591 Bytes
layout default
title Montréhack's archives

Archives

By date

    {% for post in site.posts %}
  • {{ post.title }}, {{ post.date | date_to_long_string }}
  • {% endfor %}

By topic

{% assign sorted_tags = site.tags | sort %} {% for tag in sorted_tags %}

{{ tag | first | capitalize }}

    {% for posts in tag %} {% for post in posts %} {% if post.url %}
  • {{ post.title }}, {{ post.date | date_to_long_string }}
  • {% endif %} {% endfor %} {% endfor %}
{% endfor %}