{% extends "base.html" %} {% block title %}Accueil - {{ SITENAME }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Articles récents :

{% for article in articles_page.object_list %}

{{ article.title }}

Publié le {{ article.date|strftime('%d/%m/%Y') }} par {{ article.author }}, dans la catégorie : {% if article.category %}#{{ article.category }} {% endif %}

{{ article.summary }}
{% endfor %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %} {% endblock %}