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/_diplomas.html

14 lines
375 B

{{ if .Site.Data.content.Diplomas }}
<div class="sideSection">
<div class="sideSection__heading">
<h2 class="sideSection__title">Diplômes</h2>
</div>
<div class="sideSection__content">
<ul>
{{ range .Site.Data.content.Diplomas }}
<li>{{ . | safeHTML }}</li>
{{ end }}
</ul>
</div>
</div>
{{ end }}