website/themes/hugoplate/layouts/partials/components/language-switcher.html

14 lines
525 B
HTML

<!-- Language Switcher -->
{{ $current := .Context }}
{{ $class := .Class }}
{{ if $current.IsTranslated }}
<select class="{{ $class }}" onchange="location = this.value">
{{/* 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>
{{ end }}
</select>
{{ end }}