Skip to content

Instantly share code, notes, and snippets.

@jmooring
Last active August 3, 2023 22:09
Show Gist options
  • Save jmooring/1e4c167580ddc868abf4a8e95dcf14d5 to your computer and use it in GitHub Desktop.
Save jmooring/1e4c167580ddc868abf4a8e95dcf14d5 to your computer and use it in GitHub Desktop.
Hugo - Language switcher
{{ with .AllTranslations }}
<nav class="language-switcher">
{{ range . }}
{{ if eq .Language.Lang $.Language.Lang }}
<a class="active" aria-current="page" href="{{ .Permalink }}">{{ .Language.LanguageName }}</a>
{{ else }}
<a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a>
{{ end }}
{{ end }}
</nav>
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment