templating phase i

This commit is contained in:
juanatsap
2025-11-12 18:26:18 +00:00
parent be04b2dbc2
commit d36b67d1f1
30 changed files with 1799 additions and 757 deletions
+18
View File
@@ -0,0 +1,18 @@
{{define "section-other"}}
<!-- Other Section (Driver's License) -->
{{if .CV.Other.DriverLicense}}
<section id="other" class="cv-section">
<details open>
<summary>
<h3 class="section-title">
<iconify-icon icon="mdi:information" width="24" height="24" class="section-icon"></iconify-icon>
{{if eq .Lang "es"}}Otros{{else}}Other{{end}}
</h3>
</summary>
<div class="other-content">
{{if eq .Lang "es"}}Carnet de conducir tipo <strong>{{.CV.Other.DriverLicense}}</strong>{{else}}Driving License type <strong>{{.CV.Other.DriverLicense}}</strong>{{end}}
</div>
</details>
</section>
{{end}}
{{end}}