{% extends 'base.html' %} {% block title %} All Posts ยท {{ super() }} {% endblock title %} {% block head_description %} Full archives of {{ SITENAME|striptags }} blog. {% endblock head_description %} {% block content %}
{% set last_year = 0 %} {% for article in dates %} {% set year = article.date.strftime('%Y') %} {%if last_year != year %}

{{ year }}

{% set last_year = year %} {% endif %} {% endfor %}
{% endblock content %}