{% extends 'base.html.twig' %} {% block title %}{{ parent() }} - Blog{% endblock %} {% block body %}
{% for article in articles %}

{{ article.title}}

{{ article.publicationDate | format_date('long') }} - {{ article.author }}

{{ article.content | markdown }}
Voir l'article {% if is_granted('edit', article) %} Modifier cet article {% endif %}
{% else %}

Rien pour le moment

{% endfor %}
{% endblock %}