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.
14 lines
432 B
14 lines
432 B
{{ if .Site.Data.content.Interests }}
|
|
<div class="sideSection">
|
|
<div class="sideSection__heading">
|
|
<h2 class="sideSection__title">{{ i18n "interests" }}</h2>
|
|
</div>
|
|
<div class="sideSection__content">
|
|
<ul class="interests">
|
|
{{ range .Site.Data.content.Interests }}
|
|
<li class="interests__item">{{ . | safeHTML }}</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|