mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-10-31 22:17:36 +00:00
10 lines
521 B
HTML
10 lines
521 B
HTML
|
{{/* Link directly to documentation etc., if possible. */}}
|
||
|
{{ $langPage := cond (gt (len .Translations) 0) . .Site.Home }}
|
||
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||
|
<i class="fas fa-globe ml-2"></i>
|
||
|
</a>
|
||
|
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
||
|
{{ range $langPage.AllTranslations }}
|
||
|
<a class="dropdown-item" href="{{ .RelPermalink }}">{{ .Language.LanguageName }}</a>
|
||
|
{{ end }}
|
||
|
</div>
|