{% extends "base.html" %} {% load i18n %} {% load theme %} {% load tagging_tags %} {% load bfmarkup %} {% block title %}{% trans "Posts" %}{% endblock %} {% block extrahead %} {% theme_css "highlight" %} {% theme_js "highlight.pack" %} {% if tags %} {% 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 tags %}

{% if tags|length|pluralize %} {% if union %} {% trans "All articles, tagged with union of tags" %} {% else %} {% trans "All articles, tagged with intersection of tags" %} {% endif %} {% else %} {% trans "All articles, tagged with" %} {% endif %} "{{ tags|list_attr:"name"|join:", " }}"

{% 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 %}