custom/static-plugins/CytexTheme/src/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_control_prev_icon %}
  3.      {% sw_icon 'arrow-left' style {
  4.          'namespace': "CytexTheme",
  5.          'pack': 'cytex',
  6.          'color': '#000000'
  7.         }
  8.      %}
  9.  {% endblock %}
  10. {% block element_image_gallery_inner_control_next_icon %}
  11.     {% sw_icon 'arrow-right' style {
  12.         'namespace': "CytexTheme",
  13.         'pack': 'cytex',
  14.         'color': '#000000'
  15.         }
  16.     %}
  17. {% endblock %}
  18. {% block element_image_gallery_inner_col %}
  19. <div class="gallery-slider-col{% if galleryPosition == "left" %} col order-1 order-md-2{% elseif galleryPosition == "underneath" %} col-12 order-1{% endif %}"
  20.      {% if zoomModal %}data-zoom-modal="true"{% endif %}>
  21.     {# option "magnifierOverGallery" shows zoom container over gallery #}
  22.     <div class="base-slider gallery-slider{% if navigationArrows == "outside" %} has-nav-outside{% endif %}{% if navigationDots == "outside" %} has-dots-outside{% endif %}{% if magnifierOverGallery %} js-magnifier-zoom-image-container{% endif %}">
  23.         {% if galleryBuybox or productDetail.site %}
  24.             {% block component_product_box_badges %}
  25.                 {% sw_include '@Storefront/storefront/component/product/card/badges.html.twig' with {
  26.                     productDetail: {
  27.                         site: true,
  28.                         discount: true
  29.                     }
  30.                 }%}
  31.             {% endblock %}
  32.         {% endif %}
  33.         {% block element_image_gallery_inner_wrapper %}
  34.             {{ parent() }}
  35.         {% endblock %}
  36.     </div>
  37. </div>
  38. {% endblock %}
  39. {% block element_image_gallery_inner_zoom_modal_wrapper %}
  40. {% endblock %}