{% 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

{% endif %} #} {% endif %}
{% endblock content %}