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

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3. {{ include('Includes/headRecipe.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. {% include 'Partials/AgeVerification.html.twig' %}
  19. {# output scripts added before #}
  20. {% block scripts deferred %}
  21. {{ pimcore_head_script() }}
  22. {{ include('Includes/footerScripts.html.twig') }}
  23. {% endblock %}
  24. <script>var country = '{% if country is defined %}{{ country }}{% else %}DE{% endif %}';</script>
  25. </body>
  26. </html>