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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_head %}
  3.     {% sw_include '@Storefront/storefront/page/product-detail/meta.html.twig' %}
  4. {% endblock %}
  5. {% block base_content %}
  6.     {% block page_product_detail %}
  7.         <div class="container">
  8.             <div class="product-detail"
  9.                 itemscope
  10.                 itemtype="https://schema.org/Product">
  11.                 {% block page_product_detail_inner %}
  12.                     {% block page_product_detail_content %}
  13.                         <div class="product-detail-content">
  14.                             
  15.                             {% set mediaItems = page.product.media.media %}
  16.                             {% block page_product_detail_main %}
  17.                                 <div class="row product-detail-main">
  18.                                     {% block page_product_detail_media %}
  19.                                         <div class="col-lg-5 product-detail-media">
  20.                                             {% if config('core.cart.wishlistEnabled') %}
  21.                                                 {% block page_product_detail_wishlist %}
  22.                                                     {% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with {
  23.                                                         showText: true,
  24.                                                         size: 'md',
  25.                                                         productId: page.product.id
  26.                                                     } %}
  27.                                                 {% endblock %}
  28.                                             {% endif %}
  29.                                             {% if page.product.media %}
  30.                                                 {% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
  31.                                                     'mediaItems': mediaItems,
  32.                                                     'zoom': true,
  33.                                                     'zoomModal': true,
  34.                                                     'displayMode': 'cover',
  35.                                                     'gutter': 5,
  36.                                                     'minHeight': '750px',
  37.                                                     'navigationArrows': false,
  38.                                                     'navigationDots': false,
  39.                                                     'galleryPosition': 'underneath',
  40.                                                     'isProduct': true,
  41.                                                     'fallbackImageTitle': page.product.translated.name,
  42.                                                     'startIndexThumbnails': page.product.cover.position + 1,
  43.                                                     'startIndexSlider': page.product.cover.position + 1
  44.                                                 } %}
  45.                                             {% endif %}
  46.                                         </div>
  47.                                     {% endblock %}
  48.                                     <div class="col-lg-7 product-detail-side">    
  49.                                                                     
  50.                                         {% block page_product_detail_headline %}
  51.                                             <div class="product-detail-headline">
  52.                                                 {% sw_include '@Storefront/storefront/page/product-detail/headline.html.twig' %}
  53.                                             </div>
  54.                                         {% endblock %}
  55.                                         
  56.                                         {% block page_product_detail_buy %}                                    
  57.                                             <div class="product-detail-buy">
  58.                                                 {% sw_include '@Storefront/storefront/page/product-detail/buy-widget.html.twig' %}
  59.                                             </div>
  60.                                         {% endblock %}
  61.                                     </div>
  62.                                 </div>
  63.                             {% endblock %}
  64.                         </div>
  65.                     {% endblock %}
  66.                     <div class="product-details-custom-grid">
  67.                         {% block page_product_detail_tabs %}
  68.                             <div class="product-detail-tabs">
  69.                                 {% sw_include '@Storefront/storefront/page/product-detail/tabs.html.twig' %}
  70.                             </div>
  71.                         {% endblock %}
  72.                         {% block page_product_detail_description_content_properties %}
  73.                             {% if page.product.sortedProperties|length > 0 %}
  74.                                 <div class="product-detail-specification">
  75.                                     <h3>{{ "product.packageIncludesHeading"|trans|sw_sanitize }}</h3>
  76.                                     {% sw_include '@Storefront/storefront/page/product-detail/properties.html.twig' %}
  77.                                 </div>
  78.                             {% endif %}
  79.                         {% endblock %}
  80.                     </div>
  81.                     {% block page_product_detail_cross_selling %}
  82.                         <div class="product-detail-tabs product-detail-cross-selling">
  83.                             {% sw_include '@Storefront/storefront/page/product-detail/cross-selling/tabs.html.twig' with {
  84.                                 crossSellings: page.crossSellings
  85.                             } %}
  86.                         </div>
  87.                     {% endblock %}
  88.                 {% endblock %}
  89.             </div>
  90.         </div>
  91.     {% endblock %}
  92. {% endblock %}