1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/agdj/core/templates/blog/archive_month.html Sun Feb 01 02:55:17 2009 -0500
1.3 @@ -0,0 +1,14 @@
1.4 +{% extends "blog/blog.html" %}
1.5 +
1.6 +{% block title %}204 No Content Archive - {{ month|date:"F Y" }}{% endblock %}
1.7 +
1.8 +{% block header %}<h1><a href="{% url blog-index %}">204 No Content</a>
1.9 + <a href="{% url blog-archive %}">Archive</a> - {{ month|date:"F Y" }}</h1>{% endblock %}
1.10 +
1.11 +{% block content %}
1.12 +<div class="month">
1.13 + {% for object in object_list %}
1.14 + {% include "blog/render_post_summary.html" %}
1.15 + {% endfor %}
1.16 +</div>
1.17 +{% endblock %}