custom/plugins/CogiCapskeeper/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_html %}
  3. <html lang="{{ app.request.locale }}"
  4.       itemscope="itemscope"
  5.       itemtype="https://schema.org/WebPage">
  6. {% endblock %}
  7. {% block base_head %}
  8.     {% sw_include '@Storefront/storefront/layout/meta.html.twig' %}
  9. {% endblock %}
  10. {% block base_body %}
  11.     <body
  12.         class="{% block base_body_classes %}is-ctl-{{ controllerName|lower }} is-act-{{ controllerAction|lower }}{% endblock %}">
  13.     {% block base_body_inner %}
  14.         {% block base_noscript %}
  15.             {{ parent() }}
  16.         {% endblock %}
  17.         {% block base_header %}
  18.             {% block layout_header_search %}
  19.                 <div class="header-search-col">
  20.                     <div class="row">
  21.                         <div class="col">
  22.                             {% sw_include 'storefront/layout/header/search.html.twig' %}
  23.                         </div>
  24.                     </div>
  25.                 </div>
  26.             {% endblock %}
  27.             {{ parent() }}
  28.         {% endblock %}
  29.         {% block base_navigation %}
  30.             {#            <div class="nav-main"> #}
  31.             {#                {% block base_navigation_inner %} #}
  32.             {#                    {% sw_include '@Storefront/storefront/layout/navigation/navigation.html.twig' %} #}
  33.             {#                {% endblock %} #}
  34.             {#            </div> #}
  35.         {% endblock %}
  36.         {% block base_offcanvas_navigation %}
  37.                         {% if page.header.navigation %}
  38.                             <div class="d-none js-navigation-offcanvas-initial-content{% if context.salesChannel.navigationCategoryId == page.header.navigation.active.id %} is-root{% endif %}">
  39.                                 {% block base_offcanvas_navigation_inner %}
  40.                                     {% sw_include '@Storefront/storefront/layout/navigation/offcanvas/navigation.html.twig' with { navigation: page.header.navigation } %}
  41.                                 {% endblock %}
  42.                             </div>
  43.                         {% endif %}
  44.         {% endblock %}
  45.         {% block base_main %}
  46.             {{ parent() }}
  47.         {% endblock %}
  48.         {% block base_footer %}
  49.             {{ parent() }}
  50.         {% endblock %}
  51.     {% endblock %}
  52.     {% block base_scroll_up %}
  53.         {{ parent() }}
  54.     {% endblock %}
  55.     {% block base_cookie_permission %}
  56.         {{ parent() }}
  57.     {% endblock %}
  58.     {% block base_pseudo_modal %}
  59.         {{ parent() }}
  60.     {% endblock %}
  61.     {% block base_body_script %}
  62.         {{ parent() }}
  63.     {% endblock %}
  64.     </body>
  65. {% endblock %}