9636b3659f
- Move all bilingual text from templates to UI JSON (labels, buttons, modals) - Move skills summary paragraph to CV JSON with HTML support - Add new UI sections: navigation, viewControls, sections, footer, portfolio, pdfModal, shortcutsModal, infoModal, widgets - Update Go structs to match expanded JSON structure - Add template.HTML type for CV.SkillsSummary field - Add JSON content validation test (70-json-content-validation.test.mjs) Templates now contain only structural logic (CSS classes, HTML attributes) while all user-visible text loads from JSON files for proper i18n support.
12 lines
448 B
HTML
12 lines
448 B
HTML
{{define "shortcuts-button"}}
|
|
<!-- Keyboard Shortcuts Button (Fixed Left) -->
|
|
<button
|
|
id="shortcuts-button"
|
|
class="fixed-btn shortcuts-btn no-print has-tooltip"
|
|
onclick="document.getElementById('shortcuts-modal').showModal()"
|
|
aria-label="{{.UI.Widgets.Shortcuts.AriaLabel}}"
|
|
data-tooltip="{{.UI.Widgets.Shortcuts.Tooltip}}">
|
|
<iconify-icon icon="mdi:keyboard-outline" width="28" height="28"></iconify-icon>
|
|
</button>
|
|
{{end}}
|