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

{{ article.title}}{{ article.publicationDate | date('d-m-Y')}} {{ article.author }}

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

Rien pour le moment

{% endfor %}
{% endblock %}