changelog shortlog tags changeset files revisions annotate raw

saudade/blog/templates/blog/post_archive_day.html

changeset 0: ecb4d6b006b7
author: Jason Moiron <jmoiron@jmoiron.net>
date: Thu Jul 10 03:09:57 2008 -0400 (3 years ago)
permissions: -rw-r--r--
description: initial checkin; totally revamped organization
1{% extends "base.html" %}
2{% load markup %}
3
4{% block content %}
5
6 <h2> posts for {{ day }} </h2>
7 <ul id="submenu">
8 </ul>
9 <table>
10 <tbody>
11 {% for object in object_list %}
12 <tr>
13 <th style="text-align: left;"><a href="{{ object.slug }}">{{ object.title }}</a></th>
14 <td>{% for tag in object.tags.all %}{{ tag.get_link }} {% if not forloop.last %},{% endif %}{% endfor %}</td>
15 <td>{{ object.pub_date }}</td>
16 </tr>
17 {% endfor %}
18 </tbody>
19 </table>
20
21{% endblock %}