{% extends "base.html" %} {% load i18n %} {% load theme %} {% load tagging_tags %} {% block extrahead %} {% theme_css "highlight" %} {% theme_js "highlight.pack" %} {% 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.name }}"

{% endif %} {% endfilter %} {% comment %} {% tag_cloud_for_model blog.post as tags %} {% render_tag_cloud tags %} {% endcomment %} {% for object in object_list %} {% include "blog/post_entry.html" %} {% endfor %} {% endblock %}