2021-12-08 16:53:43 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ user.lang }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="format-detection" content="telephone=yes" />
|
|
|
|
{% block head %}
|
|
|
|
<title>{{ site.title }}</title>
|
|
|
|
{% endblock %}
|
2022-11-30 23:15:52 +01:00
|
|
|
<script nonce="{{ site.csp.nonce }}">
|
|
|
|
window.languageCode = {{ site.language.code|json_encode()|raw }};
|
|
|
|
window.languageEntries = {{ site.language.entries|json_encode()|raw }};
|
|
|
|
</script>
|
2021-12-08 16:53:43 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|