{% extends 'base.html.twig' %} {% block title %}Le blog de Benj{% endblock %} {% block body %}

Derniers articles

{% for article in articles %}

{{ article.title}}

{{ article.author }}, le {{ article.publicationDate | date('d-m-Y')}}
{{ article.content | raw }}
{% else %}

Rien pour le moment

{% endfor %}
{% endblock %}