{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles %} {% if loop.index == 1 %}

{{ article.title }}

Le {{ article.locale_date }}

{{ article.content }}

Par {{ article.author }}, Catégorie : {{ article.category }}

Tags : {% for tag in article.tags %} {{ tag }} / {% endfor %}

{% if loop.length > 1 %}

Autres articles

{% endif %} {% else %}

{{ article.title }}

Le {{ article.locale_date }}

{{ article.summary }}

Par {{ article.author }}, Catégorie : {{ article.category }}

Lire la suite …
{% endif %} {% endfor %} {% else %} {% endif %} {% endblock content %}