{% set isPortal = ((isPortal is defined) and isPortal) %}
{% if not document is defined or not document %}
{% set document = pimcore_document(1) %}
{% endif %}
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
{% include 'Includes/head/headPart1.html.twig' with {'document': document} %}
{% do pimcore_head_link().appendStylesheet(asset('website/static/css/app.css')) %}
{% include 'Includes/head/headPart2.html.twig' %}
{% include 'Includes/head/headPart3.html.twig' %}
<body class="sign-in-wrap">
<div id="wrapper">
<main id="main" role="main">
{{ block('content') }}
</main>
<!-- footer of the page -->
{% set navStartNode = getNavStartNode() %}
{{ pimcore_inc('/' ~ navStartNode.getKey() ~ '/en_us/shared/footer') }}
</div>
</body>
<script>
$(document).ready(function(){
$('a[href*="en_US"]').each(function() {
this.href = this.href.replace('en_US','en_us');
})
})
</script>
</html>