<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{% block metaTags %}
{% set page = getPage(app.request.attributes.get("_controller")) %}
<meta name="description" content="{{ page ? page.metaDescription : asbtemplate.siteTitle }}">
<title>{{ page ? page.metaTitle : asbtemplate.siteTitle }}</title>
{% endblock %}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous">
<script src="https://kit.fontawesome.com/0878a33904.js" crossorigin="anonymous"></script>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
});
</script>
<script type="text/javascript"
src="//www.freeprivacypolicy.com/public/cookie-consent/3.1.0/cookie-consent.js"></script>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
cookieconsent.run({
"notice_banner_type": "simple",
"consent_type": "implied",
"palette": "light",
"language": "fr",
"website_name": "Asb template",
"change_preferences_selector": "#changePreferences"
});
});
</script>
{% endblock %}
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body {% block body_tag %}{% endblock %}>
<div class="wrapper">
{% block flash %}
{% for label, messages in app.flashes %}
{% for key, message in messages %}
<div>{{ message|raw }}</div>
{% endfor %}
{% endfor %}
{% endblock %}
{% block body %}{% endblock %}
{% block footer %}
<div>
<a href="#" id="changePreferences">Paramétrer mes Cookies</a>
</div>
{% endblock %}
</div>
</body>
</html>