vendor/shopware/storefront/Resources/views/storefront/section/cms-section-default.html.twig line 1

Open in your IDE?
  1. {% block page_content_section_default %}
  2.     {% set layout = section.sizingMode ? section.sizingMode|replace({"_": "-"}) : "container" %}
  3.     <div class="cms-section-default {{ layout }}">
  4.         {% for block in section.blocks %}
  5.             {% block section_default_content_block %}
  6.                 {% sw_include "@Storefront/storefront/section/cms-section-block-container.html.twig" %}
  7.             {% endblock %}
  8.         {% endfor %}
  9.     </div>
  10. {% endblock %}