templates/signin.html.twig line 33

Open in your IDE?
  1. {% set isPortal = ((isPortal is defined) and isPortal) %}
  2. {% if not document is defined or not document %}
  3.   {% set document = pimcore_document(1) %}
  4. {% endif %}
  5. <!DOCTYPE html>
  6. <html lang="en">
  7. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
  8. <meta http-equiv="Pragma" content="no-cache" />
  9. <meta http-equiv="Expires" content="0" />
  10. {% include 'Includes/head/headPart1.html.twig' with {'document': document} %}
  11. {% do pimcore_head_link().appendStylesheet(asset('website/static/css/app.css')) %}
  12. {% include 'Includes/head/headPart2.html.twig' %}
  13. {% include 'Includes/head/headPart3.html.twig' %}
  14. <body class="sign-in-wrap">
  15.  
  16.   <div id="wrapper">
  17.     
  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>