custom/plugins/MesAmis/src/Resources/views/storefront/layout/header/header.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
  2. {% block layout_header %}
  3.     {% block component_formitable %}
  4.         {% sw_include '@Storefront/storefront/component/formitable.html.twig' %}
  5.     {% endblock %}
  6.     {% block layout_top_bar %}
  7.         {% sw_include '@Storefront/storefront/layout/header/top-bar.html.twig' %}
  8.     {% endblock %}
  9.     {% block layout_header_navigation %}
  10.         <div class="row align-items-center header-row justify-content-between">
  11.             {% block layout_header_logo %}
  12.                 <div class="col-auto header-logo-col">
  13.                     {% sw_include '@Storefront/storefront/layout/header/logo.html.twig' %}
  14.                 </div>
  15.             {% endblock %}
  16.             {% block layout_header_navigation_toggle %}
  17.                 {{parent()}}
  18.             {% endblock %}
  19.         </div>
  20.     {% endblock %}
  21. {% endblock %}