custom/plugins/NextagTheme/src/Resources/views/storefront/page/content/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@parent/storefront/page/content/index.html.twig' %}
  2. {% block base_main_inner %}
  3.     {% set isShopList = false %}
  4.     {% if page.cmsPage.translated.name == "Martel-Kategorie" %}
  5.         {% set isShopList = true %}
  6.     {% endif %}
  7.     <div class="container-main">
  8.         {% block page_content %}
  9.             {# @deprecated tag:v6.4.0 class `cms-breadcrump` use `cms-breadcrumb` instead #}
  10.             {# {% if page.cmsPage.type != "landingpage" and isShopList == false %}
  11.                 <div class="breadcrumb-block">
  12.                     <div class="container-fluid limited">
  13.                         <div class="row justify-content-center">
  14.                             <div class="col-12 col-lg-10">
  15.                                 <div class="breadcrumb cms-breadcrumb">
  16.                                     {% block cms_breadcrumb %}
  17.                                         {% sw_include '@Storefront/storefront/component/listing/breadcrumb.html.twig' with {
  18.                                             context: context,
  19.                                             navigationTree: page.header.navigation.tree,
  20.                                             category: page.header.navigation.active
  21.                                         } only %}
  22.                                     {% endblock %}
  23.                                 </div>
  24.                             </div>
  25.                         </div>
  26.                     </div>
  27.                 </div>
  28.             {% endif %} #}
  29.             <div class="cms-page">
  30.                 {# {% block page_content_search %}
  31.                     {% sw_include '@Storefront/storefront/page/content/search.html.twig' %}   
  32.                 {% endblock %} #}
  33.                 {% block page_content_blocks %}
  34.                     {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  35.                 {% endblock %}
  36.             </div>
  37.         {% endblock %}
  38.     </div>
  39. {% endblock %}