We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config.toml: add flag parameter to all languages
[Languages.en.params] flag = "🇬🇧"
add code to header.html
{{ if .Site.IsMultiLingual }} <ul class="navbar-nav ml-auto language-list"> {{ $pageLang := .Page.Lang}} {{ range .Site.Home.AllTranslations }} {{ if ne $pageLang .Lang }} <li class="nav-item"> <a class="nav-link scroll-to" href="{{ .Permalink }}"> {{ .Site.Params.flag }} </a> </li> {{ end }} {{ end }} </ul> {{ end }}
The text was updated successfully, but these errors were encountered:
Additionally this is helpful: https://discourse.gohugo.io/t/access-multilingual-data-in-partials/46189/5
Sorry, something went wrong.
No branches or pull requests
config.toml:
add flag parameter to all languages
add code to header.html
The text was updated successfully, but these errors were encountered: