<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>{% block title %}Recov'up{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.ico"/>
<link crossorigin="use-credentials" rel="manifest" href="/manifest.webmanifest">
<script src="/app.js" defer></script>
{% block meta %}{% endblock %}
<link href="/css/{{ version }}.css" rel="stylesheet" type="text/css">
{% block head %}{% endblock %}
{% block css %}{% endblock %}
</head>
<body>
<div class="wrapper">
{% block body %}{% endblock %}
</div>
<script src="/js/{{ version }}.js"></script>
{% block js %}{% endblock %}
<script type="application/javascript">
document.addEventListener("DOMContentLoaded", (event) => {
UI.initSelects();
});
</script>
</body>
</html>