custom/plugins/SteincoTheme/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_navigation_toggle_tablet %}
  3.     {# remove icon for category navigation in sidebar #}
  4. {% endblock %}
  5. {# % block layout_header_search_toggle %}
  6.     { # hide it earlier than Shopware wants to # }
  7.     <div class="col-auto d-md-none">
  8.         {{ parent() }}
  9.     </div>
  10. {% endblock % #}
  11. {% block layout_header_logo %}
  12.     {# <div class="col-12 col-lg-auto header-logo-col"> #}
  13.     {# avoid line break on small devices #}
  14.     <div class="header-logo-col">
  15.         {% sw_include '@Storefront/storefront/layout/header/logo.html.twig' %}
  16.     </div>
  17. {% endblock %}
  18. {% block layout_header_actions %}
  19.     {# avoid line break on small devices #}
  20.     <div class="order-1 header-actions-col" style="padding-right: 1rem;">
  21.         <div class="row no-gutters">
  22.             {% block layout_header_navigation_toggle %}
  23.                 {{ parent() }}
  24.             {% endblock %}
  25.             {% block layout_header_search_toggle %}
  26.                 {{ parent() }}
  27.             {% endblock %}
  28.             {% if config('core.cart.wishlistEnabled') %}
  29.                 {% block layout_header_actions_wishlist %}
  30.                     {# <div class="col-auto">
  31.                         <div class="header-wishlist">
  32.                             <a class="btn header-wishlist-btn header-actions-btn"
  33.                                href="{{ path('frontend.wishlist.page') }}"
  34.                                title="{{ 'header.wishlist'|trans|striptags }}"
  35.                                aria-label="{{ 'header.wishlist'|trans|striptags }}">
  36.                                 {% sw_include '@Storefront/storefront/layout/header/actions/wishlist-widget.html.twig' %}
  37.                             </a>
  38.                         </div>
  39.                     </div> #}
  40.                     {{ parent() }}
  41.                 {% endblock %}
  42.             {% endif %}
  43.             {% block layout_header_actions_account %}
  44.                 {{ parent() }}
  45.             {% endblock %}
  46.             {% block layout_header_actions_cart %}
  47.                 {% if shopChannel %}
  48.                     {{ parent() }}
  49.                 {% endif %}
  50.             {% endblock %}
  51.         </div>
  52.     </div>
  53.   
  54. {% endblock %}