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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/properties.html.twig' %}
  2. {% block page_product_detail_properties_inner %}
  3.     {% if page.product.extensions.netiProductCms and page.product.extensions.netiProductCms.getAboveProductPropertiesContent() %}
  4.         {% block neti_product_detail_cms_above_properties %}
  5.             {% for content in page.product.extensions.netiProductCms.getAboveProductPropertiesContent() %}
  6.                 <div class="is--neti-next-productdetailcms {{ config('NetiNextProductDetailCms.config.aboveProductPropertiesIndention') }}" {% if config('NetiNextProductDetailCms.config.aboveProductPropertiesInlineStyle') %} style="{{ config('NetiNextProductDetailCms.config.aboveProductPropertiesInlineStyle') }}"{% endif %}>
  7.                     {{ content|raw }}
  8.                 </div>
  9.             {% endfor %}
  10.         {% endblock %}
  11.     {% endif %}
  12.     {% if page.product.extensions.netiProductCms and page.product.extensions.netiProductCms.getReplaceProductPropertiesContent() %}
  13.         <div class="product-detail-properties">
  14.             {% for content in page.product.extensions.netiProductCms.getReplaceProductPropertiesContent() %}
  15.                 <div class="is--neti-next-productdetailcms {{ config('NetiNextProductDetailCms.config.replaceProductPropertiesIndention') }}" {% if config('NetiNextProductDetailCms.config.replaceProductPropertiesInlineStyle') %} style="{{ config('NetiNextProductDetailCms.config.aboveProductPropertiesInlineStyle') }}"{% endif %}>
  16.                     {{ content|raw }}
  17.                 </div>
  18.             {% endfor %}
  19.         </div>
  20.     {% else %}
  21.         {{ parent() }}
  22.     {% endif %}
  23.     {% if page.product.extensions.netiProductCms and page.product.extensions.netiProductCms.getBelowProductPropertiesContent() %}
  24.         {% block neti_product_detail_cms_below_properties %}
  25.             {% for content in page.product.extensions.netiProductCms.getBelowProductPropertiesContent() %}
  26.                 <div class="is--neti-next-productdetailcms {{ config('NetiNextProductDetailCms.config.belowProductPropertiesIndention') }}" {% if config('NetiNextProductDetailCms.config.belowProductPropertiesInlineStyle') %} style="{{ config('NetiNextProductDetailCms.config.belowProductPropertiesInlineStyle') }}"{% endif %}>
  27.                     {{ content|raw }}
  28.                 </div>
  29.             {% endfor %}
  30.         {% endblock %}
  31.     {% endif %}
  32. {% endblock %}