custom/plugins/SimaxThemeKara/src/Resources/views/storefront/page/product-detail/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/index.html.twig' %}
  2. {% block page_product_detail_media %}
  3.     {% if theme_config('kara-product-detail-simax-slider') %}
  4.         <div class="col-lg-7 product-detail-media simax-gallery-slider" data-simax-gallery-slider="true">
  5.             {% if page.product.media %}
  6.                 {% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
  7.                     'mediaItems': mediaItems,
  8.                     'zoom': true,
  9.                     'zoomModal': true,
  10.                     'displayMode': 'contain',
  11.                     'gutter': 5,
  12.                     'minHeight': '430px',
  13.                     'navigationArrows': 'inside',
  14.                     'navigationDots': 'inside',
  15.                     'galleryPosition': 'left',
  16.                     'isProduct': true,
  17.                     'fallbackImageTitle': page.product.translated.name,
  18.                     'startIndexThumbnails': page.product.cover.position + 1,
  19.                     'startIndexSlider': page.product.cover.position + 1
  20.                 } %}
  21.             {% endif %}
  22.         </div>
  23.     {% else %}
  24.         {{ parent() }}
  25.     {% endif %}
  26. {% endblock %}