templates/contacts/captations.html.twig line 1

Open in your IDE?
  1. {% extends 'contacts/contact_entete.inc.html.twig' %}
  2. {% block content %}
  3. <main class="tc-desktop-2_3 tc-phone-1_1">
  4.     <section class="tc-panel">
  5.         <div class="tc-panel-header">
  6.             <h2>(Re)voir les captations intégrales</h2>
  7.             {% if is_all_captation is defined and is_all_captation %}
  8.             <h3>Toutes les captations en ligne</h3>
  9.             {% endif %}
  10.             {% if is_last_chance is defined and is_last_chance %}
  11.             <h3>Dernière chance pour visionner les captations intégrales</h3>
  12.             {% endif %}
  13.             {% if is_future_captation is defined and is_future_captation %}
  14.             <h3>Toutes les captations à venir</h3>
  15.             {% endif %}
  16.         </div>
  17.         <div class="tc-panel-body tc-masonry-container">
  18.             {% if list_captations is defined and list_captations %}
  19.                 {% for idpodcast,podcast in list_captations %}
  20.                     <div class="tc-block tc-tablet-1_2">
  21.                         {% include 'podcasts/culturebox_titre.inc.html.twig' %}
  22.                     </div>
  23.                 {% endfor %}
  24.             {% else %}
  25.                 <div class="tc-block">
  26.                     Il n'y a aucun résultat(s)
  27.                 </div>
  28.             {% endif %}
  29.         </div>
  30.     </section>
  31. </main>
  32. {% endblock %}
  33.