2026-04-25 20:43:37 +12:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2026-04-30 22:27:36 +12:00
|
|
|
<link rel="icon" href="/favicon.png" />
|
2026-06-09 21:28:53 +12:00
|
|
|
<script>
|
|
|
|
|
// Resolve the theme before first paint so there is no light-mode flash.
|
|
|
|
|
(function () {
|
|
|
|
|
try {
|
|
|
|
|
var pref = localStorage.getItem('theme');
|
|
|
|
|
var dark =
|
|
|
|
|
pref === 'dark' ||
|
|
|
|
|
((!pref || pref === 'system') &&
|
|
|
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches);
|
|
|
|
|
document.documentElement.dataset.theme = dark ? 'dark' : 'light';
|
|
|
|
|
} catch (e) {
|
|
|
|
|
document.documentElement.dataset.theme = 'light';
|
|
|
|
|
}
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
2026-04-25 20:43:37 +12:00
|
|
|
%sveltekit.head%
|
|
|
|
|
</head>
|
|
|
|
|
<body data-sveltekit-preload-data="hover">
|
|
|
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|