This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/layouts/partials/language-selector.html

25 lines
1.2 KiB
HTML
Raw Normal View History

2022-10-20 23:26:03 +02:00
<h2 class="sr-only">{{ i18n "lang_select_title" }}</h2>
<nav>
{{ if .IsTranslated -}}
{{ range .Translations }}
<a
class="flex items-center gap-2 button"
rel="alternate"
href="{{ .RelPermalink }}"
hreflang="{{ .Language.Params.LanguageCode | default .Lang }}"
lang="{{ .Language.Params.LanguageCode | default .Lang }}"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32">
<g fill="currentColor">
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-2.29-2.333A17.9 17.9 0 0 1 8.027 13H4.062a8.008 8.008 0 0 0 5.648 6.667zM10.03 13c.151 2.439.848 4.73 1.97 6.752A15.905 15.905 0 0 0 13.97 13h-3.94zm9.908 0h-3.965a17.9 17.9 0 0 1-1.683 6.667A8.008 8.008 0 0 0 19.938 13zM4.062 11h3.965A17.9 17.9 0 0 1 9.71 4.333 8.008 8.008 0 0 0 4.062 11zm5.969 0h3.938A15.905 15.905 0 0 0 12 4.248 15.905 15.905 0 0 0 10.03 11zm4.259-6.667A17.9 17.9 0 0 1 15.973 11h3.965a8.008 8.008 0 0 0-5.648-6.667z"/>
</g>
</svg>
<span class="text-sm font-semibold">
{{- .Language.LanguageName -}}
</span>
</a>
{{ end -}}
{{ end -}}
2022-10-20 19:39:49 +02:00
</nav>