{% extends 'base.html.twig' %} {% block title %}Galerie photo{% endblock %} {% block body %}

Galerie photo

{% if is_granted('ROLE_USER') %} 📸 Ajouter une photo {% endif %}
{% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %} {% if photos is empty %}

Aucune photo pour le moment.

{% else %}
{% for photo in photos %}
{{ photo.title }} {% if is_granted('ROLE_ADMIN') %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {# Librairie lightbox (CDN) #} {% endblock %}