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.
16 lines
808 B
HTML
16 lines
808 B
HTML
{{define "page-footer"}}
|
|
<!-- Footer (hidden in print) -->
|
|
<footer class="no-print"
|
|
_="on mouseenter add .footer-hovered to me then call setFooterHover(true)
|
|
on mouseleave remove .footer-hovered from me then call setFooterHover(false)">
|
|
<p style="text-align: center; margin-bottom: 0.5rem;">
|
|
<a href="https://github.com/juanatsap/cv-site" target="_blank" rel="noopener noreferrer" class="github-repo-link" style="text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;">
|
|
<iconify-icon icon="mdi:github" width="20" height="20"></iconify-icon>
|
|
{{.UI.Footer.ViewOnGithub}}
|
|
</a>
|
|
</p>
|
|
<p>© {{.CV.Meta.LastUpdated}} {{.CV.Personal.Name}} |
|
|
{{.UI.Footer.LastUpdated}}: {{.CV.Meta.LastUpdated}}</p>
|
|
</footer>
|
|
{{end}}
|