{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% block content_title %}

All articles

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

{{ article.title }}

{% if INCLUDE_IMAGE == True %} {% if article.photo_image %} {% endif %} {% endif %} {{ article.summary }}
{% endfor %}
{% if articles_page.has_other_pages() %} {% include 'include/pagination.html' %} {% endif %} {% endblock content %}