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

{{ article.title }}

{{ article.summary }}
{% if not loop.last %}
{% endif %}
{% endfor %} {% include 'navigator.html' %} {% if FEED_RSS %} {% endif %} {% if FEED_ATOM %} {% endif %} {% endif %} {% endblock %}