templates/editions/videos.html.twig line 1

Open in your IDE?
  1. {% extends 'editions/entete_editeur.inc.html.twig' %}
  2. {% block subcontent %}
  3. <main class="tc-desktop-2_3 tc-phone-1_1 ">
  4. {% if spectacles is defined and spectacles %}
  5.     <section class="tc-panel tc-videos">
  6.         <div class="tc-panel-header">
  7.             {% if spectacles_prochains is defined and spectacles_prochains %}
  8.                 <h2 class="tc-color-videos">Spectacles à l'affiche avec vidéos</h2>
  9.             {% endif %}
  10.             {% if spectacles_tous is defined and spectacles_tous %}
  11.                 <h2 class="tc-color-videos">Tous les spectacles avec vidéos</h2>
  12.             {% endif %}
  13.         </div>
  14.         <div class="tc-panel-body tc-masonry-container">
  15.             {% if videos_blocks is defined and videos_blocks %}
  16.                 {% if videos_classic is defined and videos_classic %}
  17.                     {% for idmultimedia,video in spectacles %}
  18.                     <div class="tc-block tc-tablet-1_2 tc-videos-tpl-a" style="margin:0.5em 0;">
  19.                         {% include 'videos/video_titre_mini.inc.html.twig' %}
  20.                     </div>
  21.                     {% endfor %}
  22.                 {% else %}
  23.                     {% for idmultimedia,video in spectacles %}
  24.                     <div class="tc-block tc-tablet-1_2  tc-video-tpl-a" style="margin:0.5em 0;">
  25.                         {% include 'videos/video_titre_v2.inc.html.twig' %}
  26.                     </div>
  27.                     {% endfor %}
  28.                 {% endif %}
  29.             {% else %}
  30.                 {% for idspectacle,spectacle in spectacles %}
  31.                     <div class="tc-block tc-tablet-1_2  tc-spectacles-tpl-b" style="margin:0.5em 0;">
  32.                         {% include 'spectacles/spectacle_titre.inc.html.twig' %}
  33.                     </div>
  34.                 {% endfor %}
  35.             {% endif %}
  36.         </div>
  37.         <div class="tc-panel-footer">
  38.             {% include 'includes/pagination.inc.html.twig' %}
  39.         </div>
  40.     </section>
  41. {% else %}
  42.     <section class="tc-panel">
  43.         <div class="tc-panel-body">
  44.             <div class="tc-block">
  45.                 <div class="tc-block-body">
  46.                     <p>Il n'y a encore pas de mise en scène référencée pour cette pièce.</p>
  47.                 </div>
  48.             </div>
  49.         </div>
  50.     </section>
  51. {% endif %}
  52. </main>
  53. {% endblock %}