src/Bidcoz/Bundle/FrontendBundle/Resources/views/Auction/_item_photo_box.html.twig line 1

Open in your IDE?
  1. <div class="item_photo_wrapper">
  2.     {% if item.primaryImage is defined and item.primaryImage.image is defined and item.primaryImage.image %}
  3.         <div class="item_photo_box">
  4.             <a href="{{ vich_uploader_asset(item.primaryImage.image, 'file') }}" data-lightbox="gallery">
  5.                 <img src="{{ vich_uploader_asset(item.primaryImage.image, 'file') }}" />
  6.             </a>
  7.         </div>
  8.     {% endif %}
  9.     <div class="item_photo_thumbnails_box">
  10.         {% for image in item.images %}
  11.             {% if image.image %}
  12.                 <a href="{{ vich_uploader_asset(image.image, 'file') }}" data-lightbox="gallery">
  13.                     <img src="{{ vich_uploader_asset(image.image, 'file') }}" />
  14.                 </a>
  15.             {% endif %}
  16.         {% endfor %}
  17.     </div>
  18. </div>