{% extends "base.html" %} {% block content_title %} {% if articles_page.number == 1 %} {% include 'introduction.html' %} {% endif %} {% endblock %} {% block content %}


{% for article in articles_page.object_list %}
{% if article.headerimage %}
{% endif %}

{{ article.title }}

{{ article.summary|striptags }}



{% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %}


{% endif %}
{% endblock content %}