congo/layouts/partials/translations.html

14 lines
376 B
HTML
Raw Normal View History

2022-01-11 01:00:27 +00:00
{{ if .IsTranslated }}
<ul class="flex list-none flex-row">
2022-01-11 01:00:27 +00:00
{{ range .AllTranslations }}
<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>
2022-01-11 01:00:27 +00:00
{{ end }}
</ul>
2022-01-11 01:00:27 +00:00
{{ end }}