templates/includes/vignette_dvd.inc.html.twig line 1

Open in your IDE?
  1. <div class="tc-block-header">
  2.     <span class="tc-textwrap-title"><a href="{{ thnet }}/dvd/{{ dvd.urlClean }}" class="tc-text-overflow">{{ dvd.title }}</a></span>
  3. </div>
  4. <div class="tc-block-body">
  5.     <figure class="tc-media-thumbnail">
  6.         <a href="{{ thnet }}/dvd/{{ dvd.urlClean }}"><img src="{{ dvd.vignette }}" alt="Couverture du dvd de {{ dvd.title }}" /></a>
  7.     </figure>
  8.     <div class="tc-block-body-text">
  9. {#        <!-- {% if dvd.vod %}<div class="tc-text-label-inline">disponible en VOD</div>{end:} -->#}
  10.         {% if dvd.dvd_author is not empty %}
  11.             <p class="tc-textwrap tc-textwrap-margin"><span class="tc-text-label-inline">de</span>
  12.                 {% for idperson,author in dvd.dvd_author %}
  13.                 <span>
  14.                     <a href="/biographies/{{ author.url_clean }}">{{ author.firstname }} {{ author.lastname }}</a>{% if author.nopunct is not defined or (author.nopunct is defined and not author.nopunct) %}, {% endif %}
  15.                 </span>
  16.                 {% endfor %}
  17.             </p>
  18.         {% endif %}
  19.         {% if dvd.dvd_director is not empty %}
  20.             <p class="tc-textwrap tc-textwrap-margin"><span class="tc-text-label-inline">mise en scène</span>
  21.                 {% for idperson,director in dvd.dvd_director %}
  22.                 <span>
  23.                     <a href="/biographies/{{ director.url_clean }}">{{ director.firstname }} {{ director.lastname }}</a>{% if director.nopunct is not defined or (director.nopunct is defined and not director.nopunct) %}, {% endif %}
  24.                 </span>
  25.                 {% endfor %}
  26.             </p>
  27.         {% endif %}
  28.         {% if dvd.dvd_moviedirector is not empty %}
  29.         <p class="tc-textwrap tc-textwrap-margin"><span class="tc-text-label-inline">réalisation</span>
  30.             {% for idperson,moviedirector in dvd.dvd_moviedirector %}
  31.             <span>
  32.                 <a href="/biographies/{{ moviedirector.url_clean }}">{{ moviedirector.firstname }} {{ moviedirector.lastname }}</a>{% if moviedirector.nopunct is not defined or (moviedirector.nopunct is defined and not moviedirector.nopunct) %}, {% endif %}
  33.             </span>
  34.             {% endfor %}
  35.         </p>
  36.         {% endif %}
  37.     </div>
  38. </div>