{% extends 'base.html' %} {% load i18n blogfilter %} {% block content %} {% for object in object_list %} {% include 'blog/rdf.html' %}

{{ object.title }}

{{ object.pub_date|date:"F d, Y H:i"}} Posted by {{ object.author }}
{% autoescape off %}

{{ object.body|truncatelines:3 }}

{% endautoescape %}
{% if object.has_3lines %}read more...{% endif %}
{{ object.trackback_count }} trackbacks | {{ object.comment_count }} comments | {% trans "View or Leave comments" %}
{% endfor %} {% if not object_list %} {% trans 'No Entries' %} {% endif %} {% endblock %}