Skip to content

Latest commit

 

History

History
78 lines (63 loc) · 1.73 KB

archives.md

File metadata and controls

78 lines (63 loc) · 1.73 KB
layout title
default
Montréhack's archives

Archives

By Seasons / Episodes

{% for post in site.posts %} {% capture this_season %}{{ post.season }}{% endcapture %} {% capture next_season %}{{ post.previous.season }}{% endcapture %}

{% if forloop.first %}

Season {{this_season}}

    {% endif %}
  • Episode {{ post.episode }}: {{ post.title }} on {{ post.date | date_to_long_string }}
  • {% if forloop.last %}

{% else %} {% if this_season != next_season %}

Season {{next_season}}

    {% endif %} {% endif %} {% 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 %}

    By date

    {% for post in site.posts %} {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}

    {% if forloop.first %}

    {{this_year}}

      {% endif %}
    • {{ post.title }}, {{ post.date | date: "%B %-d" }}
    • {% if forloop.last %}

    {% else %} {% if this_year != next_year %}

{{next_year}}

    {% endif %} {% endif %} {% endfor %}