41 lines
1.3 KiB
Twig
41 lines
1.3 KiB
Twig
<!DOCTYPE html>
|
|
<html data-theme="light" lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}CraftWorld{% endblock %}</title>
|
|
<link rel="icon" href="...">
|
|
|
|
{# Anti-flash - DOIT être avant tout le reste #}
|
|
<script>
|
|
(function () {
|
|
const saved = localStorage.getItem('mc-theme') || 'light';
|
|
document.documentElement.setAttribute('data-theme', saved);
|
|
})();
|
|
</script>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
|
|
|
|
{# Variables CSS globales et styles de base #}
|
|
<link rel="stylesheet" href="{{ asset('styles/app.css') }}">
|
|
{# Styles du header #}
|
|
<link rel="stylesheet" href="{{ asset('styles/partials/header.css') }}">
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{% block importmap %}{{ importmap('app') }}{% endblock %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
{# id="page-body" + data-bg pour le changement de fond #}
|
|
<body id="page-body"
|
|
data-bg-light="{{ asset('images/bg-light.png') }}"
|
|
data-bg-dark="{{ asset('images/bg-dark.png') }}">
|
|
|
|
{% include 'partials/_header.html.twig' %}
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|