webseite/layouts/_partials/scripts.html
Jannik Menzel 9b3a38fa16
All checks were successful
publish / publish (push) Successful in 23s
updated header, footer and feed js
2025-06-20 21:46:09 +02:00

23 lines
No EOL
710 B
HTML

<!-- Localization Auto Redirect -->
{{ if .IsHome }}
<script>
const cachedLang = localStorage.getItem("language");
const path = window.location.pathname;
if (cachedLang) {
if (cachedLang === "de" && path !== "/") {
window.location.href = "/";
} else if (cachedLang === "en" && path !== "/en/") {
window.location.href = "/en/";
}
} else {
const lang = navigator.language;
if (lang.startsWith("de")) {
localStorage.setItem("language", "de");
} else {
localStorage.setItem("language", "en");
}
}
</script>
{{ end }}