{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %}

{{ article.title }}

{% include "article_infos.html" %}
{{ article.summary }} more ...

{% endfor %} {% endif %} {% if articles_page and articles_paginator.num_pages > 1 %} {% else %} {% if PAGES %}

Pages

{% for page in PAGES %}
  • {{ page.title }}
  • {% endfor %}
    {% endif %} {% endif %} {% endblock content %}