agdj/core/templates/blog/archive_month.html
author Adam Gomaa <code@adam.gomaa.us>
Sun Feb 01 02:55:17 2009 -0500
changeset 419 b16f4fab397a
permissions -rw-r--r--
Add per-month archive, only show 10 on the main page.
     1 {% extends "blog/blog.html" %}
     2 
     3 {% block title %}204 No Content Archive - {{ month|date:"F Y" }}{% endblock %}
     4 
     5 {% block header %}<h1><a href="{% url blog-index %}">204 No Content</a>
     6     <a href="{% url blog-archive %}">Archive</a> - {{ month|date:"F Y" }}</h1>{% endblock %}
     7 
     8 {% block content %}
     9 <div class="month">
    10     {% for object in object_list %}
    11     {% include "blog/render_post_summary.html" %}
    12     {% endfor %}
    13 </div>
    14 {% endblock %}