agdj/core/templates/blog/render_post_summary.html
changeset 416 5a586a8c2f8f
parent 387 0c81a7844279
     1.1 --- a/agdj/core/templates/blog/render_post_summary.html	Tue Dec 02 09:16:47 2008 -0500
     1.2 +++ b/agdj/core/templates/blog/render_post_summary.html	Sun Feb 01 01:35:02 2009 -0500
     1.3 @@ -1,8 +1,7 @@
     1.4  {% load cache humanize microformats mkdn2 %}
     1.5  
     1.6 -{% cache 500 post_summary object.slug %}
     1.7  <div class="post-summary">
     1.8 -  <h3><a href="{% url agdj.blog.views.single_post object.slug %}">{{ object.title }}</a></h3>
     1.9 +  <h3><a href="{{ object.urls.view }}">{{ object.title }}</a></h3>
    1.10  {% with object.public_comments as comments %}
    1.11    <p>Posted <span class="humanize iso8601">{{ object.pub_date|iso8601 }}</span> - {% if comments %}
    1.12  {{ comments|length|apnumber|capfirst }} comment{{ comments|pluralize }}
    1.13 @@ -15,4 +14,3 @@
    1.14  </div>
    1.15  <div class="description">{{ object.description|markdown2 }}</div>
    1.16  </div>
    1.17 -{% endcache %}