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

All articles

{% endblock %} {% for article in articles_page.object_list %}

{{ article.title }}

By {% for author in article.authors %} {{ author }} {% endfor %}
{{ article.summary|striptags }}
{% endfor %}
{% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% endblock content %}