19 lines
685 B
HTML
19 lines
685 B
HTML
|
|
{{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}}
|