<!DOCTYPE html>
<html lang="en">
<head>
{% set cmsSEO = CMS.SEOfromRoute(app.request.attributes.get('_route')) %}
{% block SEO %}
<title>{% block window_title %}{% if seoTitle is defined %}{{ seoTitle }}{% endif %}{% endblock %}</title>
{% if seoDescription is defined %}
<meta content="{{ seoDescription }}" name="description">
{% endif %}
{% if seoKeywords is defined %}
<meta content="{{ seoKeywords }}" name="keywords">
{% endif %}
{% if metaData is defined %}
{{ metaData | raw }}
{% endif %}
{% if metaTags is defined %}
{% for name, content in metaTags %}
<meta property="{{ name }}" content="{{ content }}" />
{% endfor %}
{% endif %}
{% endblock SEO %}
<!-- Recaptcha script -->
<script src='https://www.google.com/recaptcha/api.js?render={{ app.environment('RECAPTCHA3_KEY') }}'></script>
<!-- Favicons -->
<link href="{{ asset(get_setting('core_site_favicon')) }}" rel="icon">
{# <link href="{{ asset('build/images/apple-touch-icon.d2525de9.png') }}" rel="apple-touch-icon">#}
{% block stylesheets %}
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i,900"
rel="stylesheet">
{{ encore_entry_link_tags(get_setting('core_site_layout')) }}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
<header id="header" class="sticky-top">
{% include 'layout/partials/header.html.twig' %}
</header>
<div class="container">
{% include 'flash_messages.html.twig' %}
{% block body %}{% endblock %}
</div>
<footer id="footer">
{% include 'layout/partials/footer.html.twig' %}
</footer>
{% block javascripts %}
{{ encore_entry_script_tags(get_setting('core_site_layout')) }}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>