mcServerWebsite/templates/base.html.twig
2026-03-21 13:38:18 +01:00

37 lines
1.4 KiB
Twig

<!DOCTYPE html>
<html data-theme="light">
<head>
<meta charset="UTF-8">
<title>{% block title %}CraftWorld{% endblock %}</title>
<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><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
{# Fonts #}
<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">
{# Styles globaux + header #}
<link rel="stylesheet" href="{{ asset('styles/header.css') }}">
{% block stylesheets %}{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
{# Anti-flash thème sombre : exécuté avant le premier paint #}
<script>
(function () {
const saved = localStorage.getItem('mc-theme') || 'light';
document.documentElement.setAttribute('data-theme', saved);
})();
</script>
</head>
<body>
{% include 'partials/_header.html.twig' %}
{% block body %}{% endblock %}
<script src="{{ asset('js/header.js') }}"></script>
</body>
</html>