{% extends "base.html" %} {% block title %}{{ SITENAME }} - Accueil{% endblock %} {% block content %} {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %} {% import 'abstract.html' as abstract with context %} {{ abstract.abstract(article, "h1") }} {% if not loop.last %}
{% endif %} {% endfor %} {% include 'navigator.html' %} {% if FEED_RSS %} {% endif %} {% if FEED_ATOM %} {% endif %} {% endif %} {% endblock %}