vendor/shopware/storefront/Resources/views/storefront/page/content/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_main_inner %}
  3.     <div class="container-main">
  4.         {% block page_content %}
  5.             {# @deprecated tag:v6.4.0 class `cms-breadcrump` use `cms-breadcrumb` instead #}
  6.             <div class="breadcrumb cms-breadcrumb cms-breadcrump container">
  7.                 {% block cms_breadcrumb %}
  8.                     {% sw_include '@Storefront/storefront/component/listing/breadcrumb.html.twig' with {
  9.                         navigationTree: page.header.navigation.tree,
  10.                         category: page.header.navigation.active
  11.                     } only %}
  12.                 {% endblock %}
  13.             </div>
  14.             <div class="cms-page">
  15.                 {% block page_content_blocks %}
  16.                     {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  17.                 {% endblock %}
  18.             </div>
  19.         {% endblock %}
  20.     </div>
  21. {% endblock %}