src/CoreBundle/Resources/views/pageTemplateProducts.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3. {{ include('Includes/headProducts.html.twig') }}
  4. <body>
  5. <header class="main-header">
  6.     <div class="navigation">
  7.         <div class="nav-bg has-background">
  8.             <div class="main-content flex-col box-align-center">
  9.                 {{ include('Includes/NavMain.html.twig') }}
  10.             </div>
  11.         </div>
  12.     </div>
  13. </header>
  14. <main>
  15.     {{ block('content') }}
  16. </main>
  17. {{ pimcore_inc('/' ~ siteName ~ '/' ~ app.request.locale ~ '/includes/footer') }}
  18. {% if enabledWebsiteFeatures is defined and enabledWebsiteFeatures['sidebarCart'] is defined and enabledWebsiteFeatures['sidebarCart'] == true %}
  19.     {{ include('Includes/SidebarCart.html.twig') }}
  20. {% endif %}
  21. {% include 'Partials/AgeVerification.html.twig' %}
  22. {# output scripts added before #}
  23. {% block scripts deferred %}
  24. {{ pimcore_head_script() }}
  25. {{ include('Includes/footerScripts.html.twig') }}
  26. {% endblock %}
  27. <script>var country = '{% if country is defined %}{{ country }}{% else %}DE{% endif %}';</script>
  28. </body>
  29. </html>