templates/podcasts/culturebox_titre.inc.html.twig line 1

Open in your IDE?
  1. <div class="tc-bloc-body tc-no-padding-mobile">
  2.     <figure class="tc-video-16_9 tc-img-affiche-video">
  3.         <a href="{{ podcast.link }}" target="_blank" rel="nofollow">
  4.             <img style="width:100%" class="lazyload" src="{{ podcast.vignette_flou }}" data-src="{{ podcast.vignette }}" alt="Miniature du podcast : {{ podcast.title }}">
  5.         </a>
  6.     </figure>
  7.     <div class="tc-block-body-text">
  8.         <p class="tc-titre">
  9.             <a href="{{ podcast.link }}" target="_blank" rel="nofollow">{{ podcast.title }}</a>
  10.         </p>
  11.         <p class="tc-textwrap-date">
  12.             {% if podcast.debutVisionnageFt is defined and podcast.debutVisionnageFt %}
  13.                 <span class="tc-text-label-inline">Du</span> {{ podcast.debutVisionnageFt|shortFR }}
  14.             {% endif %}
  15.         {% if podcast.finVisionnageFt is defined and podcast.finVisionnageFt %}
  16.             <span class="tc-text-label-inline">au</span> {{ podcast.finVisionnageFt|shortFR }}
  17.         {% endif %}
  18.         </p>
  19.         {% if hide_podcast_related is not defined or (hide_podcast_related is defined and not hide_podcast_related) %}
  20.             {% if podcast.podcast_spectacle is defined and podcast.podcast_spectacle %}
  21.             <p class="tc-textwrap-date tc-spectacles-tpl-b">
  22.                 <span class="tc-text-label-inline">+ d'infos :</span>
  23.                 {% for idspectacle,spectacle in podcast.podcast_spectacle %}
  24.                     <a href="/spectacles/{{ spectacle.url_clean }}/" class="tc-titre">{{ spectacle.view_name }}</a>
  25.                 {% endfor %}
  26.             </p>
  27.             {% endif %}
  28.         {% endif %}
  29.     </div>
  30. </div>