{% extends 'layout.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}

Vidéos - {{ videoCategorie.nom | capitalize }}

{% if videoCategorie.description is not empty %}

{{ videoCategorie.description | raw }}

{% endif %}
{% if videos is not empty %} {% for video in videos %}
{{ include('includes/_listing_videos.html.twig', { 'video': video }, with_context = false) }}
{% endfor %} {% else %}

Aucune vidéo n'a pu être trouvée pour cette catégorie.
Revenez plus tard ou essayez une autre catégorie.

{% endif %}
{% endblock %}