custom/static-plugins/NdVoorwindenTheme/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_header %}
  3.     <header class="header-main static bg-grey-900 text-white font-bold text-xs top-0 transition duration-500 z-50"
  4.             id="header">
  5.         {% block base_header_inner %}
  6.             <div class="container">
  7.                 {% sw_include '@Storefront/storefront/layout/header/header.html.twig' %}
  8.             </div>
  9.         {% endblock %}
  10.     </header>
  11. {% endblock %}
  12. {% block base_scroll_up %}
  13. {% endblock %}
  14. {% block base_footer %}
  15.     {{ parent() }}
  16.     {% if controllerName == 'Product' %}
  17.         {% sw_include '@Storefront/storefront/page/product-detail/tap-bar.html.twig' %}
  18.     {% endif %}
  19. {% endblock %}