congo/layouts/partials/translations.html

17 lines
479 B
HTML
Raw Normal View History

2022-01-11 01:00:27 +00:00
{{ if .IsTranslated }}
{{ $currentLang := .Page.Lang }}
<ul class="flex list-none flex-row">
2022-01-11 01:00:27 +00:00
{{ range .AllTranslations }}
{{ if ne $currentLang .Lang }}
<li class="ml-2">
<a
href="{{ .RelPermalink }}"
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
>{{ .Site.Params.displayName | emojify }}</a
>
</li>
{{ end }}
2022-01-11 01:00:27 +00:00
{{ end }}
</ul>
2022-01-11 01:00:27 +00:00
{{ end }}