Files
cv-site/templates/partials/widgets/back-to-top.html
T

13 lines
497 B
HTML
Raw Normal View History

2025-11-12 18:26:18 +00:00
{{define "back-to-top"}}
2025-11-14 21:38:09 +00:00
<!-- 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()
2025-11-15 15:59:54 +00:00
call window.scrollTo({top: 0, behavior: 'smooth'})">
2025-11-12 18:26:18 +00:00
<iconify-icon icon="mdi:arrow-up" width="24" height="24"></iconify-icon>
2025-11-14 21:38:09 +00:00
</button>
2025-11-12 18:26:18 +00:00
{{end}}