templates/includes/aside/spectacles/spectacles_thumbnail.html.twig line 1

Open in your IDE?
  1. {% if data_spectacles.illustrations is defined and data_spectacles.illustrations %}
  2.     {% for idfile,illustration in data_spectacles.illustrations %}
  3.     <section id="spectacles_thumbnail" class="tc-panel">
  4.         <figure>
  5.             <a href="{{ imgdirupload }}{{ illustration.extension }}/{{ illustration.file }}" rel="prettyPhoto">
  6.                 <img src="{{ imgdirupload }}{{ illustration.extension }}/{{ illustration.file }}" alt="{{ illustration.description }}" style="width:100%;" title="{{ illustration.description }}" />
  7.             </a>
  8.             {% if illustration.title is defined and illustration.title %}
  9.                 <p>{{ illustration.title }}</p>
  10.             {% endif %}
  11.             {% if illustration.description is defined and illustration.description %}
  12.                 <p>{{ illustration.description }}</p>
  13.             {% endif %}
  14.             {% if illustration.copyright is defined and illustration.copyright %}
  15.                 <p class="tc-text-label">{{ illustration.copyright }}</p>
  16.             {% endif %}
  17.         </figure>
  18.     </section>
  19.     {% endfor %}
  20. {% endif %}