2025-11-16 13:19:56 +00:00
|
|
|
{{define "download-button"}}
|
|
|
|
|
<!-- Download PDF Button (Fixed Left) -->
|
|
|
|
|
<button
|
|
|
|
|
id="download-button"
|
|
|
|
|
class="fixed-btn download-btn no-print"
|
|
|
|
|
aria-label="{{if eq .Lang "es"}}Descargar PDF{{else}}Download PDF{{end}}"
|
|
|
|
|
title="{{if eq .Lang "es"}}Descargar PDF{{else}}Download PDF{{end}}"
|
|
|
|
|
onclick="document.getElementById('pdf-modal').showModal()"
|
2025-11-16 14:03:22 +00:00
|
|
|
_="on mouseenter call syncPdfHover(true)
|
|
|
|
|
on mouseleave call syncPdfHover(false)">
|
2025-11-16 13:19:56 +00:00
|
|
|
<iconify-icon icon="catppuccin:pdf" width="28" height="28"></iconify-icon>
|
|
|
|
|
</button>
|
|
|
|
|
{{end}}
|