Le framework HUGO utilisé pour créer son CV en 2 minutes https://cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
hugo-cv/layouts/partials/_education.html

20 lines
712 B

{{ if .Site.Data.content.Education }}
<div id="education" class="section">
<div class="section__heading">
<h2 class="section__title">
Formations
</h2>
</div>
<div class="section__content">
{{ range .Site.Data.content.Education }}
<div class="education__item">
<h3 class="education__title">{{ .Course | safeHTML }}</h3>
<h4 class="education__place">{{ .Place | safeHTML }}</h4>
<h4 class="education__date">{{ .Date | safeHTML }}</h4>
<div class="education__description">{{ .Details | safeHTML }}</div>
</br>
</div>
{{ end }}
</div>
</div>
{{ end }}