{% extends "news/base_news.html" %} {% block title %}Post archive for {{ month|date:"F Y" }}{% endblock %} {% block body_class %}{{ block.super }} post_archive_month{% endblock %} {% block content_title %}

Post archive for {{ month|date:"F Y" }}

{% endblock %} {% block content %}
{% for post in object_list %}

{{ post.title }}

{{ post.publish|date:"Y F d" }}

{{ post.tease }}

{% endfor %}
{% endblock %}