templates/Components/Destination/Detail/Tabs/gallery.html.twig line 1

  1. <div id="gallery" class="tab-pane fade in{% if(activeTab=='gallery') %} active{% endif %}">
  2.     {% if(destination.gallerySecond is not empty and destination.gallerySecond.galleryItems|length > 0) %}
  3.         <div class="row">
  4.             {% for thumb in destination.gallerySecond.galleryItems %}
  5.                 {% if(thumb.media is not empty and thumb.enabled) %}
  6.                     <div class="col-md-2" style="padding: 5px; ;">
  7.                         <a href="{{ sonata_path(thumb.media, 'gallery') }}" data-lightbox="destination-gallery">{{ sonata_media(thumb.media, 'background') }}</a>
  8.                     </div>
  9.                 {% endif %}
  10.             {% endfor %}
  11.         </div>
  12.         <div class="clearfix"></div>
  13.     {% endif %}
  14. </div>