custom/plugins/WebLabels/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.                                     <div class="col-lg-7 product-detail-media">
  4.                                         {% if page.product.media %}
  5.                                             {% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
  6.                                                 'mediaItems': mediaItems,
  7.                                                 'zoom': false,
  8.                                                 'zoomModal': true,
  9.                                                 'displayMode': 'contain',
  10.                                                 'gutter': 5,
  11.                                                 'minHeight': '430px',
  12.                                                 'navigationArrows': 'inside',
  13.                                                 'navigationDots': 'inside',
  14.                                                 'galleryPosition': 'left',
  15.                                                 'isProduct': true,
  16.                                                 'fallbackImageTitle': page.product.translated.name,
  17.                                                 'startIndexThumbnails': page.product.cover.position + 1,
  18.                                                 'startIndexSlider': page.product.cover.position + 1
  19.                                             } %}
  20.                                         {% endif %}
  21.                                     </div>
  22.                                 {% endblock %}