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

59 lines
2.6 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 -->
<div class="selector-group">
<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}}
hx-post="/toggle/length"
hx-target=".cv-paper"
2025-11-12 19:54:56 +00:00
hx-swap="outerHTML show:none"
2025-11-12 18:55:06 +00:00
hx-indicator="#loading">
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>
</div>
<!-- Logo toggle -->
<div class="selector-group">
<label class="selector-label">{{if eq .Lang "es"}}Logos{{else}}Logos{{end}}:</label>
<label class="icon-toggle">
2025-11-12 18:55:06 +00:00
<input type="checkbox"
id="logoToggle"
{{if .ShowLogos}}checked{{end}}
hx-post="/toggle/logos"
hx-target=".cv-paper"
2025-11-12 19:54:56 +00:00
hx-swap="outerHTML show:none"
2025-11-12 18:55:06 +00:00
hx-indicator="#loading">
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>
</div>
<!-- Theme toggle -->
<div class="selector-group">
<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}}
hx-post="/toggle/theme"
hx-target="body"
2025-11-12 19:54:56 +00:00
hx-swap="outerHTML show:none"
2025-11-12 18:55:06 +00:00
hx-indicator="#loading">
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>
</div>
</div>
{{end}}