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

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

{% endif %} {% if month %}

{% trans "Archive for" %} {{ month|date:"F, Y" }}

{% endif %} {% if day %}

{% trans "Archive for" %} {{ day|date:"F d, Y" }}

{% endif %} {% if tag %}

{% trans "All articles, tagged with" %} "{{ tag }}"

{% endif %} {% endfilter %} {% for object in object_list %} {% include "blog/post_entry.html" %} {% endfor %} {% include "blog/next.html" %} {% endblock %}