--- layout: default title: Posts Archive generator: pagination use: - posts --- {% set year = '0' %}

Posts Archive

{% for post in page.pagination.items %} {% set this_year %}{{ post.date | date("Y") }}{% endset %} {% if year != this_year %} {% set month = '0' %} {% set year = this_year %} {% endif %} {% set this_month %}{{ post.date | date("F") }}{% endset %} {% if month != this_month %} {% set month = this_month %}

{{ month }} {{ year }}

{% endif %}
{{ post.title }}
{% endfor %}
{% if page.pagination.previous_page or page.pagination.next_page %} {% endif %}