2024-02-27 10:43:33 +00:00
|
|
|
<!-- Language Switcher -->
|
|
|
|
|
{{ $current := .Context }}
|
2024-02-14 16:01:14 +00:00
|
|
|
{{ $class := .Class }}
|
2024-02-27 10:43:33 +00:00
|
|
|
{{ if $current.IsTranslated }}
|
2024-02-14 16:01:14 +00:00
|
|
|
<select class="{{ $class }}" onchange="location = this.value">
|
2024-02-27 10:43:33 +00:00
|
|
|
{{/* Current page language */}}
|
|
|
|
|
<option value="{{ $current.Permalink }}" selected>{{ $current.Language.LanguageName }}</option>
|
|
|
|
|
|
|
|
|
|
{{/* Iterate over all translations of the current page */}}
|
|
|
|
|
{{ range $current.Translations }}
|
|
|
|
|
<option value="{{ .Permalink }}">{{ .Language.LanguageName }}</option>
|
2024-02-14 16:01:14 +00:00
|
|
|
{{ end }}
|
|
|
|
|
</select>
|
|
|
|
|
{{ end }}
|