26 lines
679 B
HTML
26 lines
679 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<script>
|
|
// apply the persisted theme before first paint to avoid a flash
|
|
try {
|
|
var theme = JSON.parse(localStorage.getItem('theme') || '"system"');
|
|
if (
|
|
theme === 'dark' ||
|
|
(theme === 'system' && matchMedia('(prefers-color-scheme: dark)').matches)
|
|
) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
} catch (e) {
|
|
/* ignore */
|
|
}
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|