add language selector to every page

This commit is contained in:
deneb 2025-02-17 23:01:01 +01:00
parent 9b2b7b402d
commit fcfa0e3a03
3 changed files with 50 additions and 0 deletions

View file

@ -15,6 +15,36 @@
padding: 0;
}
.languages-compact {
position: absolute;
right: 0;
bottom: 0;
padding: 0 15px;
z-index: 100;
}
.languages-compact a,
.languages-compact span {
font-size: 1.5em;
transition: color .25s ease-out;
font-weight: bold;
text-shadow:
0 0 5px black,
0 0 5px black,
0 0 5px black,
0 0 5px black,
0 0 5px black;
}
.languages-compact a:not(:hover),
.languages-compact span {
color: white;
}
#main-banner {
position: relative;
}
.error__404 {
font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

View file

@ -0,0 +1,9 @@
<header class="header">
<div class="container header__container" id="main-banner">
{{ partial "svg.html" "header" }}
{{ partial "logo.html" . }}
{{ partial "languages-compact.html" . }}
</div>
{{ partial "menu.html" . }}
</header>

View file

@ -0,0 +1,11 @@
{{- $translations := .AllTranslations }}
{{- if and hugo.IsMultilingual (gt (len $translations) 0) }}
<div class="languages-compact">
{{- range $index, $lang := $translations }}
{{- if ne $index 0}}<span> | </span>{{end}}
<a class="" href="{{ .RelPermalink }}">
{{ $lang.Language | upper }}
</a>
{{- end }}
</div>
{{- end }}