{% extends 'base.html.twig' %} {% block title %}{{ parent() }} - Blog{% endblock %} {% block body %} {% if tag is defined %}

Etiquette : {{ tag }}

{% endif %}
{% for article in articles %}

{{ article.title}}

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

{% for tag in article.tags %} {{ tag }} {% if not loop.last %} {% endif %} {% endfor %}

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

Rien pour le moment

{% endfor %}
{% endblock %}