custom/apps/FuexcImageCDN/Resources/views/storefront/element/cms-element-image-gallery.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/element/cms-element-image-gallery.html.twig' %}
  2. {% block element_image_gallery_inner_thumbnails_item_inner %}
  3.     {% if image is defined and image._entityName == 'product_media' %}
  4.         <div class="gallery-slider-thumbnails-item-inner">
  5.             {% set attributes = {
  6.                 'class': 'gallery-slider-thumbnails-image',
  7.                 'alt': (image.translated.alt ?: fallbackImageTitle),
  8.                 'title': (image.translated.title ?: fallbackImageTitle)
  9.             } %}
  10.             {% if isProduct %}
  11.                 {% set attributes = attributes|merge({ 'itemprop': 'image' }) %}
  12.             {% endif %}
  13.             {% sw_thumbnails 'gallery-slider-thumbnails-image-thumbnails' with {
  14.                 media: image,
  15.                 sizes: {
  16.                     'default': '200px'
  17.                 },
  18.                 loadingStrategy: 'eager'
  19.             } %}
  20.         </div>
  21.     {% else %}
  22.         {{ parent() }}
  23.     {% endif %}
  24. {% endblock %}
  25. {% block element_image_gallery_inner_zoom_modal_slider_item_image %}
  26.     {% sw_thumbnails 'gallery-slider-image-thumbnails' with {
  27.         media: image,
  28.         attributes: {
  29.             'class': 'gallery-slider-image js-image-zoom-element js-load-img',
  30.             'alt': (image.translated.alt ?: fallbackImageTitle),
  31.             'title': (image.translated.title ?: fallbackImageTitle)
  32.         },
  33.         load: false,
  34.         loadOriginalImage: true,
  35.         autoColumnSizes: false,
  36.         loadingStrategy: 'eager'
  37.     } %}
  38. {% endblock %}
  39. {# Support for the SolidProductVideos Plugin #}
  40. {% block solid_pv_gallery_slider_thumbnail_image %}
  41.     {% include '@FuexcImageCDN/storefront/element/solid-product-videos-fix.html.twig' %}
  42.     {% block solid_pv_gallery_slider_thumbnail_icon %}
  43.         {{ parent() }}
  44.     {% endblock %}
  45. {% endblock %}