--- layout: default title: Tag Archive generator: [posts_tag_index, pagination] pagination: provider: page.tag_posts --- {% block head_meta %} {% endblock %} {% block title %}{{ page.title }} "{{ page.tag }}"{% endblock %} {% block content %} {% set year = '0' %}

"{{ page.tag }}"

{% 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 %}
{% endblock content %}