{% 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 }} {%include 'meta.html'%} {{ article.summary }} Lire la suite... {% endfor %} {% if articles_page %} {% if articles_page.has_previous() %} {% if articles_page.previous_page_number() == 1 %} << {% else %} << {% endif %} {% endif %} Page {{ articles_page.number }} sur {{ articles_paginator.num_pages }} {% if articles_page.has_next() %} >> {% endif %} {% endif%} {% endif %} {% endblock %}