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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_script %}
  3.     {{ parent() }}
  4.     {# {{ dump() }} #}
  5. {% endblock %}
  6. {% block base_html %}
  7.     <html lang="{{ app.request.locale }}"
  8.         itemscope="itemscope"
  9.         itemtype="https://schema.org/WebPage"
  10.         name="{{ page.cmsPage.name }}" 
  11.         type="{{ page.cmsPage.type }}"
  12.         type="{{ page.cmsPage.type }}"    
  13.         controllerAction="{{ controllerAction }}" 
  14.     >
  15. {% endblock %}
  16. {% block base_header %}
  17.     <div class="top-desc">
  18.         <div class="container no-padding">
  19.             <span class="top-description">Angebote gelten nur für Industrie, Handel, Handwerk und Gewerbe. Alle Preise zzgl. gesetzlicher Mehrwertsteuer.</span>
  20.         </div>       
  21.     </div>
  22.     <div class="topbar">
  23.         <div class="container">
  24.             <a class="telephone" href="tel:040609405100">040 - 609 405 100</a>
  25.             <span class="address">osko Handels GmbH - Fuhlsbüttler Str. 415a - 22309 Hamburg</span>
  26.         </div>       
  27.     </div>
  28.     {{ parent() }}
  29. {% endblock %}