25 lines
791 B
HTML
25 lines
791 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="text-scale" content="scale" />
|
|
<script>
|
|
// Apply theme before first paint to avoid a light-on-dark flash.
|
|
(function () {
|
|
try {
|
|
var t = localStorage.getItem("squalk:theme");
|
|
var dark =
|
|
t === "dark" ||
|
|
(t !== "light" &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches);
|
|
if (dark) document.documentElement.classList.add("dark");
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|