{% extends 'base.html.twig' %} {% block title %}Blog{% endblock %} {% block body %}

Blog technique

{% for article in articles %}
{{ article.titre }}

{{ article.datePublication|date('d/m/Y') }}{% if article.auteur %} ยท {{ article.auteur }}{% endif %}

{{ article.extrait }}

Lire
{% else %}

Aucun article pour le moment.

{% endfor %}
{% endblock %}