custom/apps/AtlKatanaTheme/Resources/views/storefront/component/product/description.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/description.html.twig' %}
  2. {% block component_product_description_title %}{% endblock %}
  3. {% block component_product_description_content %}
  4.     <div class="row">
  5.         {{ parent() }}
  6.     </div>
  7. {% endblock %}
  8. {% block component_product_description_content_text %}
  9.     <div class="col-12 col-md-7">
  10.         {{ parent() }}
  11.     </div>
  12. {% endblock %}
  13. {% block component_product_description_content_properties %}
  14.     <div class="col-12 col-md-5">
  15.         {% sw_include '@Storefront/storefront/skin/global/component/product/quality-seals.html.twig' with {
  16.             showLabel: false
  17.         } %}
  18.         {{ parent() }}
  19.     </div>
  20. {% endblock %}