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.                     {# @deprecated tag:v6.4.0 parameter `navigationTree` will be removed #}
  9.                     {% sw_include '@Storefront/storefront/component/listing/breadcrumb.html.twig' with {
  10.                         context: context,
  11.                         navigationTree: page.header.navigation.tree,
  12.                         category: page.header.navigation.active
  13.                     } only %}
  14.                 {% endblock %}
  15.             </div>
  16.             <div class="cms-page">
  17.                 {% block page_content_blocks %}
  18.                     {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  19.                 {% endblock %}
  20.             </div>
  21.         {% endblock %}
  22.     </div>
  23. {% endblock %}