custom/plugins/SalvanaPferde2022/src/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.     {% if "cover" in section.backgroundMediaMode and not section.position %}
  4.       {% set layout = 'not-boxed' %}
  5.     {% endif %}
  6.     <div class="cms-section-default {{ layout }}" {% if section.name %} id="{{ section.name }}" {% endif %} >
  7.         {% for block in section.blocks %}
  8.             {% block section_default_content_block %}
  9.                 {% sw_include "@Storefront/storefront/section/cms-section-block-container.html.twig" %}
  10.             {% endblock %}
  11.         {% endfor %}
  12.     </div>
  13. {% endblock %}