hugo-cv/layouts/partials/_interests.html
greg 989dc857fb
All checks were successful
continuous-integration/drone/push Build is passing
maj
2023-12-13 14:24:56 +01:00

15 lines
390 B
HTML

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