2022-01-11 01:00:27 +00:00
|
|
|
{{ if .IsTranslated }}
|
2023-06-04 00:20:41 +00:00
|
|
|
{{ $currentLang := .Page.Lang }}
|
2023-05-25 04:12:42 +00:00
|
|
|
<ul class="flex list-none flex-row">
|
2022-01-11 01:00:27 +00:00
|
|
|
{{ range .AllTranslations }}
|
2023-06-04 00:20:41 +00:00
|
|
|
{{ 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 }}
|
2022-11-08 02:15:58 +00:00
|
|
|
</ul>
|
2022-01-11 01:00:27 +00:00
|
|
|
{{ end }}
|