templates/cart.html.twig line 21

Open in your IDE?
  1. <!DOCTYPE html>
  2. {% set isPortal = ((isPortal is defined) and isPortal) %}
  3. {% if not document is defined or not document %}
  4.   {% set document = pimcore_document(1) %}
  5. {% endif %}
  6. <html lang="en">
  7. {% include 'Includes/head/headPart1.html.twig' with {'document': document} %}
  8. <!-- Include layout-specific css files here -->
  9. {% do pimcore_head_link().appendStylesheet(asset('website/static/css/app.css')) %}
  10. {% include 'Includes/head/headPart2.html.twig' %}
  11. {% include 'Includes/head/headPart3.html.twig' %}
  12. <body>
  13.   <!-- main container of all the page elements -->
  14.   <div id="wrapper">
  15.     
  16.     {% include 'Includes/topnav.html.twig' with {'country': country, 'locale' : locale, 'params':'', 'preview':'preview'} %}
  17.     <!-- contain main informative part of the site -->
  18.     <main id="main" role="main">
  19.       {{ block('content') }}
  20.     </main>
  21.     <!-- footer of the page -->
  22.     {% set navStartNode = getNavStartNode() %}
  23.     {{ pimcore_inc('/' ~ navStartNode.getKey() ~ '/en_us/shared/footer') }}
  24.   </div>
  25. </body>
  26. <script>
  27. $(document).ready(function(){
  28.   $('a[href*="en_US"]').each(function() {
  29.     this.href = this.href.replace('en_US','en_us');
  30.   })
  31. })
  32. </script>
  33. </html>