{% extends 'base.html' %}
{% block canonical_url_suffix %}{{ slug }}{% endblock %}
{% block title %}
{{ SITENAME }} - Archives
{% endblock title %}
{% block content %}
{% set year = namespace(last=0) %}
{% for article in articles %}
{% set year.current = article.date|strftime("%Y") %}
{% if year.current != year.last %}
{% if year.last != 0 %}
{% endif %}
{{ year.current }}
{% set year.last = year.current %}
{% endif %}
-
{{ article.title }}
{% if loop.revindex0 == 0 %}
{% endif %}
{% endfor %}
{% endblock content %}