changelog shortlog tags changeset files revisions annotate raw

saudade/blog/templates/blog/archive_day.html

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
1{% extends "base.html" %}
2{% load blog %}
3
4{% block content %}
5
6{% set month date|date:"M" %}
7{% set month_display date|date:"F" %}
8{% set year date|date:"Y" %}
9{% set day date|date:"jS" %}
10
11<p class="note">
12 You are viewing an archive of posts for
13 <a href="/blog/{{year}}/{{month}}/">{{month_display}}</a> {{ day }},
14 <a href="/blog/{{year}}/">{{year}}</a>. You can also head back to
15 the <a href="/blog/">blog home</a>.
16</p>
17
18{% for post in posts %}
19 {% include "blog/post_summary.html" %}
20{% endfor %}
21
22{% endblock %}