custom/apps/AtlKatanaTheme/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 %}
  3.     {% set gallerySliderOptions = gallerySliderOptions|replace_recursive({
  4.         thumbnailSlider: {
  5.             responsive: {
  6.                 md: {
  7.                     items: (galleryPosition == "underneath") ? theme_config('atl-product-detail-gallery-thumbnail-underneath-items-md') : theme_config('atl-product-detail-gallery-thumbnail-left-items-md'),
  8.                 },
  9.                 lg: {
  10.                     items: (galleryPosition == "underneath") ? theme_config('atl-product-detail-gallery-thumbnail-underneath-items-lg') : theme_config('atl-product-detail-gallery-thumbnail-left-items-lg'),
  11.                 },
  12.                 xl: {
  13.                     items: (galleryPosition == "underneath") ? theme_config('atl-product-detail-gallery-thumbnail-underneath-items-xl') : theme_config('atl-product-detail-gallery-thumbnail-left-items-xl'),
  14.                 }
  15.             }
  16.         }
  17.     }) %}
  18.     {{ parent() }}
  19. {% endblock %}
  20. {% block element_image_gallery_inner_col %}
  21.     {{ parent() }}
  22.     {% block element_image_gallery_inner_badges %}
  23.         {% sw_include '@Storefront/storefront/component/product/card/badges.html.twig' with {
  24.             product: page.product
  25.         } %}
  26.     {% endblock %}
  27. {% endblock %}