Files
cv-site/templates/partials/navigation/language-selector.html
T

26 lines
743 B
HTML
Raw Normal View History

2025-11-12 18:26:18 +00:00
{{define "language-selector"}}
<!-- Language selector -->
<div class="language-selector">
2025-11-12 18:55:06 +00:00
<button class="selector-btn {{if eq .Lang "en"}}active{{end}}"
data-short="EN"
hx-get="/?lang=en"
hx-target="body"
hx-swap="outerHTML"
hx-indicator="#loading"
hx-push-url="true"
aria-label="English">
2025-11-12 18:26:18 +00:00
English
</button>
2025-11-12 18:55:06 +00:00
<button class="selector-btn {{if eq .Lang "es"}}active{{end}}"
data-short="ES"
hx-get="/?lang=es"
hx-target="body"
hx-swap="outerHTML"
hx-indicator="#loading"
hx-push-url="true"
aria-label="Español">
2025-11-12 18:26:18 +00:00
Español
</button>
</div>
{{end}}