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

12 lines
451 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 has-tooltip tooltip-left"
aria-label="{{.UI.Widgets.BackToTop.AriaLabel}}"
data-tooltip="{{.UI.Widgets.BackToTop.Tooltip}}"
2025-11-14 21:38:09 +00:00
style="display: none;"
_="on click call scrollToTop(event)">
<iconify-icon icon="mdi:arrow-up"></iconify-icon>
2025-11-14 21:38:09 +00:00
</button>
2025-11-12 18:26:18 +00:00
{{end}}