vendor/store.shopware.com/swagb2bplatform/SwagB2bPlatform/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.     {% if isSalesRep and not isSalesRepRemoteControl %}
  4.         <div class="container">
  5.             {% sw_include '@SwagB2bPlatform/storefront/layout/header/header.html.twig' %}
  6.         </div>
  7.     {% else %}
  8.         {{ parent() }}
  9.     {% endif %}
  10. {% endblock %}
  11. {% block base_navigation %}
  12.     {% if isSalesRepRemoteControl or not isSalesRep %}
  13.         {{ parent() }}
  14.     {% endif %}
  15. {% endblock %}
  16. {% block base_body_script %}
  17.     {{ parent() }}
  18.     {% sw_include
  19.         '@SwagB2bPlatform/storefront/bundles/BundleLoader.html.twig'
  20.         ignore missing
  21.     %}
  22. {% endblock %}