21 lines
609 B
HTML
21 lines
609 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<script>
|
|
localStorage.theme === 'dark' ||
|
|
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
? document.documentElement.classList.add('dark')
|
|
: document.documentElement.classList.add('light');
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
|
|
<body class="w-full" data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
|
|
</html> |