Files
cv-site/templates/partials/navigation/action-buttons.html
T

27 lines
1.1 KiB
HTML
Raw Normal View History

2025-11-12 18:26:18 +00:00
{{define "action-buttons"}}
<!-- Right: Action buttons -->
<div class="action-buttons-right">
<button
id="action-bar-pdf-btn"
class="action-btn pdf-btn has-tooltip"
2025-11-12 19:13:52 +00:00
onclick="document.getElementById('pdf-modal').showModal()"
aria-label="{{.UI.Widgets.ActionButtons.DownloadPdf}}"
data-tooltip="{{.UI.Widgets.ActionButtons.DownloadPdf}}"
_="on mouseenter call syncPdfHover(true)
on mouseleave call syncPdfHover(false)">
2025-11-17 08:34:50 +00:00
<iconify-icon icon="catppuccin:pdf" width="24" height="24"></iconify-icon>
{{.UI.Widgets.ActionButtons.DownloadPdf}}
2025-11-12 18:26:18 +00:00
</button>
<button
class="action-btn print-btn action-bar-print-btn has-tooltip"
aria-label="{{.UI.Widgets.ActionButtons.PrintFriendly}}"
data-tooltip="{{.UI.Widgets.ActionButtons.PrintFriendly}}"
_="on click call printFriendly()
on mouseenter call syncPrintHover(true)
on mouseleave call syncPrintHover(false)">
2025-11-17 08:34:50 +00:00
<iconify-icon icon="mdi:leaf" width="24" height="24"></iconify-icon>
{{.UI.Widgets.ActionButtons.PrintFriendly}}
2025-11-12 18:26:18 +00:00
</button>
</div>
{{end}}