src/Develey/TabascoBundle/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 has-background bg-image page-main row">
  7.         <div class="main-content flex-col box-align-center">
  8.             {{ include('Includes/NavMain.html.twig') }}
  9.         </div>
  10.     </div>
  11. </header>
  12. <main>
  13.     {{ block('content') }}
  14. </main>
  15. {# pimcore_inc('/' ~ app.request.locale ~ '/shared/includes/footer') #}
  16. {{ include('Includes/NavFooter.html.twig') }}
  17. {% if enabledWebsiteFeatures is defined and enabledWebsiteFeatures['sidebarCart'] is defined and enabledWebsiteFeatures['sidebarCart'] == true %}
  18.     {{ include('Includes/SidebarCart.html.twig') }}
  19. {% endif %}
  20. {# output scripts added before #}
  21. {% block scripts deferred %}
  22. {{ pimcore_head_script() }}
  23. {{ include('Includes/footerScripts.html.twig') }}
  24. {% endblock %}
  25. <script>var country = '{% if country is defined %}{{ country }}{% else %}DE{% endif %}';</script>
  26. </body>
  27. </html>