mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 02:23:34 -06:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="no-transition">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="Banner, a Discord bot and web interface for UTSA Course Monitoring"
|
|
/>
|
|
<link rel="apple-touch-icon" href="%sveltekit.assets%/logo192.png" />
|
|
<link rel="manifest" href="%sveltekit.assets%/manifest.json" />
|
|
<title>Banner</title>
|
|
<script>
|
|
(function () {
|
|
var stored = localStorage.getItem("theme");
|
|
var isDark =
|
|
stored === "dark" ||
|
|
(stored !== "light" &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches);
|
|
if (isDark) {
|
|
document.documentElement.classList.add("dark");
|
|
}
|
|
})();
|
|
</script>
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|