Files
cv-site/templates/partials/sections/education.html
T

19 lines
685 B
HTML
Raw Normal View History

2025-11-12 18:26:18 +00:00
{{define "section-education"}}
<!-- Education -->
<section id="education" class="cv-section">
<details open>
<summary>
<h3 class="section-title">
<iconify-icon icon="mdi:school" width="24" height="24" class="section-icon"></iconify-icon>
{{if eq .Lang "es"}}Formación{{else}}Training{{end}}
</h3>
</summary>
{{range .CV.Education}}
<div class="education-item">
<strong>{{.Degree}}</strong> ({{.StartDate}}-{{.EndDate}}) {{if eq $.Lang "es"}}obtenido de{{else}}obtained from the{{end}} <strong>{{.Institution}}</strong> ({{.Location}})
</div>
{{end}}
</details>
</section>
{{end}}