{% extends 'base.html.twig' %} {% block title %}Liste des articles {% endblock %} {% block body %}

Mon Profil

profil Mémento {% if app.user %}
You are logged in as {{ app.user.userIdentifier }}, Logout
{% endif %}

Liste des articles

{% if pagination %}
{% for article in pagination %}

{{ article.title }} Détail

{% endfor %}
{% else %} {% endif %}
{% endblock %}