{% extends "archives.html" %} {% block content %}
{% block header_nav %}{% endblock %}

Archives for {% for part in period | reverse %} {{ part }} {% endfor %}

{% for article in dates %}
{{ article.locale_date }}
{{ article.category }}: {{ article.title }} {% if article.comments_count > 0 %} [{{ article.comments_count }} comment{% if article.comments_count > 1 %}s{% endif %}] {% endif %} {% if article.tags|length > 0 %}
{% for tag in article.tags|sort %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}