blob: 9576a65f7875cd1c94a9afbf6fcaf67f634a5d59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ define "body" }}
<div class="flex flex-col justify-center text-3xl h-full">
{{- range .AvailableLanguages }}
<hr class="border-t-[0.125rem] border-dotted border-main-hard">
<div class="nth-[2n+1_of_div]:bg-background-medium/50 nth-[2n_of_div]:bg-background-light/50 p-2.5 flex flex-row justify-center justify-items-center">
<a href="/{{ .Name }}" class="w-12 h-12 basis-12 shrink-0 mr-4">
<img onclick="return changeUrl('{{ .Name }}');" class="w-full h-full aspect-square cursor-pointer object-cover rounded-md select-none" src="{{ .Flag }}">
</a>
<a href="/{{ .Name }}" onclick="return changeUrl('{{ .Name }}');" class="cursor-pointer">
{{ .Alt }}
</a>
</div>
{{- end }}
<hr class="border-t-[0.125rem] border-dotted border-main-hard">
</div>
{{ end }}
|