Files
cv-site/templates/partials/widgets/back-to-top.html
T
juanatsap 06eb490950 more htmx
2025-11-14 21:38:09 +00:00

13 lines
496 B
HTML

{{define "back-to-top"}}
<!-- Back to Top Link - Hyperscript smooth scroll without URL pollution -->
<button id="back-to-top"
class="back-to-top no-print"
aria-label="{{if eq .Lang "es"}}Volver arriba{{else}}Back to top{{end}}"
style="display: none;"
_="on click
call event.preventDefault()
set window.scrollTo({top: 0, behavior: 'smooth'})">
<iconify-icon icon="mdi:arrow-up" width="24" height="24"></iconify-icon>
</button>
{{end}}