public-web/layouts/partials/scripts.html

13 lines
411 B
HTML
Raw Normal View History

2022-10-24 03:43:56 +02:00
<script>
const themeChoice = localStorage.getItem("theme")
document.documentElement.classList.toggle(
"dark",
themeChoice !== null
? themeChoice === "dark"
: window.matchMedia("(prefers-color-scheme: dark)").matches
);
</script>
{{- $js := resources.Get "main.js" | js.Build | fingerprint -}}
2022-10-24 03:43:56 +02:00
<script src="{{ $js.RelPermalink }}" integrity="{{ $js.Data.Integrity }}" defer ></script>