{% block article %} {% if articles is not defined %} {% set articles = [] %} {% endif %}
{% for art in articles %}
{{ art.titre }}
{{ art.texte | raw }}
{% endfor %} {% if articles|length <= 0 %}
Pas d'article trouvé.
{% endif %}
{% endblock %}