1
{% extends "news/base_news.html" %}
4
{% block title %}Post archive for {{ month|date:"F Y" }}{% endblock %}
5
{% block body_class %}{{ block.super }} post_archive_month{% endblock %}
8
{% block content_title %}
9
<h2>Post archive for {{ month|date:"F Y" }}</h2>
14
<div class="post_list">
15
{% for post in object_list %}
17
<h3 class="title"><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
18
<p class="date">{{ post.publish|date:"Y F d" }}</p>
19
<p class="tease">{{ post.tease }}</p>