| changeset 12: | 0bcb4db50165 |
| parent: | saudade/blog/templates/blog/post_archive_day.html@ecb4d6b006b7 |
| author: | Jason Moiron <jmoiron@jmoiron.net> |
| date: | Tue Jul 22 03:07:46 2008 -0400 (3 years ago) |
| permissions: | -rw-r--r-- |
| description: | readding settings |
| jmoiron@0 | 1 | {% extends "base.html" %} |
| jmoiron@5 | 2 | {% load blog %} |
| jmoiron@0 | 3 | |
| jmoiron@0 | 4 | {% block content %} |
| jmoiron@0 | 5 | |
| jmoiron@5 | 6 | {% set month date|date:"M" %} |
| jmoiron@5 | 7 | {% set month_display date|date:"F" %} |
| jmoiron@5 | 8 | {% set year date|date:"Y" %} |
| jmoiron@5 | 9 | {% set day date|date:"jS" %} |
| jmoiron@5 | 10 | |
| jmoiron@5 | 11 | <p class="note"> |
| jmoiron@5 | 12 | You are viewing an archive of posts for |
| jmoiron@5 | 13 | <a href="/blog/{{year}}/{{month}}/">{{month_display}}</a> {{ day }}, |
| jmoiron@5 | 14 | <a href="/blog/{{year}}/">{{year}}</a>. You can also head back to |
| jmoiron@5 | 15 | the <a href="/blog/">blog home</a>. |
| jmoiron@5 | 16 | </p> |
| jmoiron@5 | 17 | |
| jmoiron@5 | 18 | {% for post in posts %} |
| jmoiron@5 | 19 | {% include "blog/post_summary.html" %} |
| jmoiron@5 | 20 | {% endfor %} |
| jmoiron@0 | 21 | |
| jmoiron@0 | 22 | {% endblock %} |