73 lines
2.6 KiB
HTML
73 lines
2.6 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="{{if eq .Lang "es"}}es{{else}}en{{end}}">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<meta name="description" content="{{.CV.Personal.Name}} - {{.CV.Personal.Title}}">
|
||
|
|
<meta name="keywords" content="CV, Resume, {{.CV.Personal.Name}}, Developer, SAP, AI">
|
||
|
|
<title>{{.CV.Personal.Name}} - Curriculum Vitae</title>
|
||
|
|
|
||
|
|
<!-- HTMX -->
|
||
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
||
|
|
|
||
|
|
<!-- CSS -->
|
||
|
|
<link rel="stylesheet" href="/static/css/main.css">
|
||
|
|
<link rel="stylesheet" href="/static/css/print.css" media="print">
|
||
|
|
|
||
|
|
<!-- Fonts -->
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<!-- Language & Export Bar (hidden in print) -->
|
||
|
|
<div class="action-bar no-print">
|
||
|
|
<div class="action-bar-content">
|
||
|
|
<div class="language-toggle">
|
||
|
|
<button
|
||
|
|
class="lang-btn {{if eq .Lang "en"}}active{{end}}"
|
||
|
|
hx-get="/cv?lang=en"
|
||
|
|
hx-target="#cv-content"
|
||
|
|
hx-swap="innerHTML"
|
||
|
|
hx-indicator="#loading">
|
||
|
|
🇬🇧 English
|
||
|
|
</button>
|
||
|
|
<button
|
||
|
|
class="lang-btn {{if eq .Lang "es"}}active{{end}}"
|
||
|
|
hx-get="/cv?lang=es"
|
||
|
|
hx-target="#cv-content"
|
||
|
|
hx-swap="innerHTML"
|
||
|
|
hx-indicator="#loading">
|
||
|
|
🇪🇸 Español
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="export-actions">
|
||
|
|
<button
|
||
|
|
class="export-btn"
|
||
|
|
onclick="window.print()">
|
||
|
|
📄 {{if eq .Lang "es"}}Descargar PDF{{else}}Download PDF{{end}}
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<span id="loading" class="htmx-indicator">
|
||
|
|
<span class="loader"></span>
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- CV Content Container -->
|
||
|
|
<div class="cv-container">
|
||
|
|
<div id="cv-content" class="cv-paper">
|
||
|
|
{{template "cv-content.html" .}}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Footer (hidden in print) -->
|
||
|
|
<footer class="no-print">
|
||
|
|
<p>© {{.CV.Meta.LastUpdated}} {{.CV.Personal.Name}} |
|
||
|
|
{{if eq .Lang "es"}}Última actualización{{else}}Last updated{{end}}: {{.CV.Meta.LastUpdated}}</p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|