{% extends "base.html" %} {% load blog %} {% block content %} {% set month date|date:"M" %} {% set month_display date|date:"F" %} {% set year date|date:"Y" %} {% set day date|date:"jS" %}
You are viewing an archive of posts for {{month_display}} {{ day }}, {{year}}. You can also head back to the blog home.
{% for post in posts %} {% include "blog/post_summary.html" %} {% endfor %} {% endblock %}