agdj/core/templates/blog/post_list.html
author Adam Gomaa <code@adam.gomaa.us>
Sun Feb 01 01:35:02 2009 -0500
changeset 416 5a586a8c2f8f
parent 315 5acb50dc1203
child 419 b16f4fab397a
permissions -rw-r--r--
Switch to date-based URLs everywhere except the feed URLs of old posts, so I don't spam everyone's feedreader.
     1 {% extends "blog/blog.html" %}
     2 {% load cache %}
     3 
     4 {% block content %}
     5 {% for object in posts %}
     6 {% include "blog/render_post_summary.html" %}
     7 {% endfor %}
     8 {% endblock %}
     9