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

15 lines
390 B

3 years ago
{{ if .Site.Data.content.Interests }}
<div class="sideSection">
<div class="sideSection__heading">
8 months ago
<h2 class="sideSection__title"> centres d'intérêts </h2>
3 years ago
</div>
<div class="sideSection__content">
7 months ago
<ul>
3 years ago
{{ range .Site.Data.content.Interests }}
7 months ago
<li>{{ . | safeHTML }}</li>
3 years ago
{{ end }}
</ul>
</div>
</div>
{{ end }}