Files
congo-hindi-gujarati/layouts/partials/translations.html
T
2023-06-04 10:20:41 +10:00

17 lines
479 B
HTML

{{ if .IsTranslated }}
{{ $currentLang := .Page.Lang }}
<ul class="flex list-none flex-row">
{{ 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 }}
{{ end }}
</ul>
{{ end }}