{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
{% if articles %}
{% for article in articles %}
{# First item #}
{% if loop.first %}
{{ article.content }}
{% if loop.length > 1 %}
Tous les articles
{% endif %}
{# other items #}
{% else %}
- {{ article.title }}
{% endif %}
{% endfor %}
{% if loop.length > 1 %}
{% endif %}
{% else %}
No articles.
{% endif %}
{% endblock content %}