{% extends "aggregator/base.html" %} {% load posts_extras %} {% block head %} {% endblock %} {% block content %} {% for post in list.object_list %}
(defpost {{ post.title|slugify|nameless|truncate:48 }} ()
{% autoescape off %}{{ post.content }}{% endautoescape %}
"{{ post.updated }}")
{% endfor %}
{% if list.has_previous %} {% endif %} {% if list.has_next %} {% endif %}
{{ list.number }} / {{ list.paginator.num_pages }}
{% endblock %}