Files
cv-site/templates/partials/navigation/view-controls.html
T

71 lines
3.3 KiB
HTML
Raw Normal View History

2025-11-12 18:26:18 +00:00
{{define "view-controls"}}
<!-- Center: View controls with labels -->
<div class="view-controls-center">
<!-- CV Length toggle -->
2025-11-14 21:38:09 +00:00
<div class="selector-group" id="desktop-length-toggle">
2025-11-12 18:26:18 +00:00
<label class="selector-label">{{if eq .Lang "es"}}Longitud{{else}}Length{{end}}:</label>
<label class="icon-toggle">
2025-11-12 18:55:06 +00:00
<input type="checkbox"
id="lengthToggle"
{{if eq .CVLengthClass "cv-long"}}checked{{end}}
2025-11-14 21:38:09 +00:00
hx-post="/toggle/length?lang={{.Lang}}"
2025-11-15 15:59:54 +00:00
hx-swap="none"
_="on change call toggleCVLength(my.checked)">
2025-11-12 18:26:18 +00:00
<span class="icon-toggle-slider">
<iconify-icon icon="mdi:file-document-outline" width="16" height="16" class="icon-left"></iconify-icon>
<iconify-icon icon="mdi:file-document-multiple-outline" width="16" height="16" class="icon-right"></iconify-icon>
</span>
</label>
<iconify-icon icon="mdi:loading"
class="htmx-indicator spinning small light"
width="14"
height="14"
aria-label="Saving"></iconify-icon>
2025-11-12 18:26:18 +00:00
</div>
<!-- Icon toggle -->
<div class="selector-group" id="desktop-icon-toggle">
<label class="selector-label">{{if eq .Lang "es"}}Iconos{{else}}Icons{{end}}:</label>
2025-11-12 18:26:18 +00:00
<label class="icon-toggle">
2025-11-12 18:55:06 +00:00
<input type="checkbox"
id="iconToggle"
{{if .ShowIcons}}checked{{end}}
hx-post="/toggle/icons?lang={{.Lang}}"
2025-11-15 15:59:54 +00:00
hx-swap="none"
_="on change call toggleIcons(my.checked)">
2025-11-12 18:26:18 +00:00
<span class="icon-toggle-slider">
<iconify-icon icon="mdi:image-off-outline" width="16" height="16" class="icon-left"></iconify-icon>
<iconify-icon icon="mdi:image-multiple-outline" width="16" height="16" class="icon-right"></iconify-icon>
</span>
</label>
<iconify-icon icon="mdi:loading"
class="htmx-indicator spinning small light"
width="14"
height="14"
aria-label="Saving"></iconify-icon>
2025-11-12 18:26:18 +00:00
</div>
<!-- Theme toggle -->
2025-11-14 21:38:09 +00:00
<div class="selector-group" id="desktop-theme-toggle">
2025-11-12 18:26:18 +00:00
<label class="selector-label">{{if eq .Lang "es"}}Vista{{else}}View{{end}}:</label>
<label class="icon-toggle">
2025-11-12 18:55:06 +00:00
<input type="checkbox"
id="themeToggle"
{{if .ThemeClean}}checked{{end}}
2025-11-14 21:38:09 +00:00
hx-post="/toggle/theme?lang={{.Lang}}"
2025-11-15 15:59:54 +00:00
hx-swap="none"
_="on change call toggleTheme(my.checked)">
2025-11-12 18:26:18 +00:00
<span class="icon-toggle-slider">
<iconify-icon icon="mdi:page-layout-sidebar-left" width="16" height="16" class="icon-left"></iconify-icon>
<iconify-icon icon="mdi:page-layout-body" width="16" height="16" class="icon-right"></iconify-icon>
</span>
</label>
<iconify-icon icon="mdi:loading"
class="htmx-indicator spinning small light"
width="14"
height="14"
aria-label="Saving"></iconify-icon>
2025-11-12 18:26:18 +00:00
</div>
</div>
{{end}}