Switch to date-based URLs everywhere except the feed URLs of old posts, so I don't spam everyone's feedreader.
1 {% load cache humanize microformats mkdn2 %}
3 <div class="post-summary">
4 <h3><a href="{{ object.urls.view }}">{{ object.title }}</a></h3>
5 {% with object.public_comments as comments %}
6 <p>Posted <span class="humanize iso8601">{{ object.pub_date|iso8601 }}</span> - {% if comments %}
7 {{ comments|length|apnumber|capfirst }} comment{{ comments|pluralize }}
8 {% else %}No comments{% endif %}
12 <div class="tag-container">tagged with
13 {% include "blog/render_post_tags_list.html" %}
15 <div class="description">{{ object.description|markdown2 }}</div>