{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Posts year archive" %}{% endblock %} {% block content %} {% filter typogrify %} {% if year %}

{% trans "Archive for" %} {{ year }}

{% endif %} {% endfilter %} {% for month in date_list %} {% trans "Archive for" %} {{ month|date:"F, Y" }}
{% endfor %} {% endblock %}