summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/partials/translations.html
blob: e09ffb387d637904d3dcc94c596903c28c00c144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{ if .IsTranslated }}
<div>
  <div class="cursor-pointer flex items-center nested-menu">
    <span class="mr-1">
      {{ partial "icon.html" "language" }}
    </span>
    <div class="text-sm font-medium text-gray-500 hover:text-primary-600 dark:hover:text-primary-400" title="{{ .Title }}">
      {{- i18n "global.language" | markdownify | emojify -}}
    </div>
  </div>
  <div class="absolute menuhide">
    <div class="pt-2 p-5 mt-2 rounded-xl backdrop-blur shadow-2xl">
      <div class="flex flex-col space-y-3">
        {{ range .AllTranslations }}
        <a href="{{ .RelPermalink }}" class="flex items-center">
          <p class="text-sm font-sm text-gray-500 hover:text-primary-600 dark:hover:text-primary-400" title="{{ .Title }}">
            {{ .Language.Params.displayName | emojify }}
          </p>
        </a>
        {{ end }}
      </div>
    </div>
  </div>
</div>
{{ end }}