{% extends "base.html" %} {% block content %}

{% block pagetitle %} {% if not articles_page.has_previous() %} Latest posts {% else %} Posts {% endif %} {% endblock pagetitle %} {% if articles_page.has_previous() %} – Page {{ articles_page.number }} {% endif %}

{% for art in articles_page.object_list %} {% if art.category == category %}
{% else %}
{% endif %}
{{ art.author.name }}

{{ art.title }}

{{ art.summary }}
{% endfor %} {% include 'pagination.html' %}
{% endblock content %}