congo/layouts/partials/translations.html

14 lines
381 B
HTML

{{ if .IsTranslated }}
<ul class="flex flex-row list-none">
{{ range .AllTranslations }}
<li class="ml-2">
<a
href="{{ .RelPermalink }}"
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
>{{ .Language.Params.displayName | emojify }}</a
>
</li>
{{ end }}
</ul>
{{ end }}