{% extends "base.html" %} {% block content %}
{% block inner_content %}{% endblock %} {% for article in articles_page.object_list %} {% if loop.index % 2 != 0 %}{% set odd = 'odd' %}{% else %}{% set odd = '' %}{% endif %} {% if loop.index == 1 %}{% set first = 'first' %}{% else %}{% set first = '' %}{% endif %}

{{ article.locale_date }}

{{ article.title }}

{% if loop.index == 1 %}
{{ article.content }}
{% else %}
{{ article.summary }}

Lire la suite ...

{% endif %} {% if article.comments %} {% endif %}
{% endfor %} {% include 'pagination.html' %}
{% endblock content %}