{% extends 'base.html.twig' %} {% block title %}Galerie photo{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} Galerie photo {# Messages flash #} {% for label, messages in app.flashes %} {% for message in messages %} {{ message }} {% endfor %} {% endfor %} {# Filtre par album #} {% if albums|length > 0 %} Filtrer par album : Tous les albums {% for album in albums %} {{ album.title }} {% endfor %} {% endif %} {% set hasPhotos = false %} {% for photo in photos %} {% set hasPhotos = true %} {# Affichage des images dans la galerie #} {% set imagePath = vich_uploader_asset(photo, 'imageFile') ?: asset('uploads/photos/' ~ photo.fileName) %} {% if imagePath %} {% else %} Image indisponible {% endif %} {% if photo.title %} {{ photo.title }} {% endif %} {% endfor %} {% if not hasPhotos %} Aucune photo publique n’a encore été ajoutée. {% endif %} {% endblock %} {% block javascripts %} {{ parent() }} {# Lightbox2 JS #} {% endblock %}
Aucune photo publique n’a encore été ajoutée.