{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles %} {# First item #} {% if loop.first %}

{{ SITENAME }} {% if SITEDESCRIPTION %} {{ SITEDESCRIPTION }}{% endif %} : {{ article.title }}

{% if not HIDE_DATE %}{% endif %}
{{ article.summary }}

{{ gettext('lire la suite') }}

{% if loop.length > 1 %}

{{ gettext('Tous les articles') }}

{% endif %} {# other items #} {% else %}
{{ article.locale_date }}
{{ article.title }}
{% endif %} {% endfor %}
{% else %}

{{ gettext('Aucun article') }}.

{% endif %} {% endblock content %}