templates/pages/collection/section/collection-img.html.twig line 1

Open in your IDE?
  1. <picture>
  2.     <source srcset="{{ collection.attachmentsFile['urls'][0]['webp']['full'] }}" type="image/webp">
  3.     <source srcset="{{ collection.attachmentsFile['urls'][0]['jpg']['full'] }}" type="image/jpeg">
  4.     <img src="{{ collection.attachmentsFile['urls'][0]['jpg']['full'] }}" alt="{{ collection.name }}" class="d-none single-product-img">
  5. </picture>