templates/spectacles/biographies.html.twig line 1

Open in your IDE?
  1. {% extends 'templates.html.twig' %}
  2. {% block headcontent %}
  3.     {% include 'spectacles/spectacle_entete.inc.html.twig' %}
  4. {% endblock %}
  5. {% block content %}
  6. <main class="tc-desktop-2_3 tc-phone-1_1 tc-videos" >
  7.     <section class="tc-panel tc-mt0">
  8.         <div class="tc-panel-header">
  9.             <h2 class="tc-color-bio">Contenus biographiques des artistes et des collaborateurs artistiques</h2>
  10.         </div>
  11.     </section>
  12.     {% if alldirectors_authors is defined and alldirectors_authors %}
  13.     <section class="tc-panel tc-mt0">
  14.         <div class="tc-panel-body tc-masonry-container">
  15.             {% for id,person in alldirectors_authors %}
  16.                 {% include 'spectacles/biographie.inc.html.twig' %}
  17.             {% endfor %}
  18.         </div>
  19.     </section>
  20.     {% endif %}
  21.     {% if acteurs is defined and acteurs %}
  22.     <section class="tc-panel tc-mt0">
  23.         <div class="tc-panel-header">
  24.             <h3 class="tc-color-bio">Distribution (en scène)</h3>
  25.         </div>
  26.         <div class="tc-panel-body tc-masonry-container">
  27.             {% for id,person in acteurs %}
  28.                 {% include 'spectacles/biographie.inc.html.twig' %}
  29.             {% endfor %}
  30.         </div>
  31.     </section>
  32.     {% endif %}
  33.     {% if distribution_suite is defined and distribution_suite %}
  34.     <section class="tc-panel tc-mt0">
  35.         <div class="tc-panel-header">
  36.             <h3 class="tc-color-bio">Distribution (suite)</h3>
  37.         </div>
  38.         <div class="tc-panel-body tc-masonry-container">
  39.             {% for id,person in distribution_suite %}
  40.                 {% include 'spectacles/biographie.inc.html.twig' %}
  41.             {% endfor %}
  42.         </div>
  43.         {% endif %}
  44.     </section>
  45. </main>
  46. {% endblock %}