21 lines
555 B
HTML
21 lines
555 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" />
|
|
<meta name="color-scheme" content="dark light" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body>
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
|
|
<script>
|
|
const theme = new URL(window.location).searchParams.get('theme');
|
|
|
|
document.body.classList.remove('light', 'dark');
|
|
document.body.classList.add(theme || 'light');
|
|
</script>
|
|
</body>
|
|
</html>
|