1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {% extends "blog/base_blog.html" %} {% block title %}Post archive for {{ year }}{% endblock %} {% block body_class %}{{ block.super }} post_archive_year{% endblock %} {% block content_title %} <h2>Post archive for {{ year }}</h2> {% endblock %} {% block content %} <ul class="link_list"> {% for month in date_list %} <li><a href="{% url blog_index %}{{ year }}/{{ month|date:"b" }}/">{{ month|date:"F" }}</a></li> {% endfor %} </ul> {% endblock %} |