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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/index.html.twig' %}
  2. {% block base_main_inner %}
  3.     <div class="container-main">
  4.         {% block page_content %}
  5.             {% if page.extensions.trustedShopsRating is defined %}
  6.                 {{ page.extensions.trustedShopsRating[0]|raw }}
  7.             {% endif %}
  8.             {% if page.extensions.category is not defined %}
  9.                 <div class="breadcrumb cms-breadcrumb container">
  10.                     {% block cms_breadcrumb %}
  11.                         {% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
  12.                             context: context,
  13.                             category: page.header.navigation.active
  14.                         } only %}
  15.                     {% endblock %}
  16.                 </div>
  17.             {% endif %}
  18.             <div class="cms-page {% if page.extensions.category is defined %} category-filter{% endif %}">
  19.                 {% block page_content_blocks %}
  20.                     {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  21.                 {% endblock %}
  22.             </div>
  23.         {% endblock %}
  24.         {% if page.extensions.category.customFields.custom_category_hide_hints == false %}
  25.             {% block page_content_hints %}
  26.                 <div class="container pb-2">
  27.                     <div class="row">
  28.                         <div class="col">
  29.                             {% sw_include '@Storefront/storefront/component/footnote.html.twig' %}
  30.                         </div>
  31.                     </div>
  32.                 </div>
  33.             {% endblock %}
  34.         {% endif %}
  35.     </div>
  36. {% endblock %}