hugo-theme-almeida/layouts/partials/_interests.html

15 lines
432 B
HTML
Raw Normal View History

2020-08-16 19:49:25 +00:00
{{ if .Site.Data.content.Interests }}
2020-08-16 12:21:35 +00:00
<div class="sideSection">
<div class="sideSection__heading">
2021-01-15 20:50:30 +00:00
<h2 class="sideSection__title">{{ i18n "interests" }}</h2>
2020-08-16 12:21:35 +00:00
</div>
<div class="sideSection__content">
<ul class="interests">
{{ range .Site.Data.content.Interests }}
2020-08-29 11:16:29 +00:00
<li class="interests__item">{{ . | safeHTML }}</li>
2020-08-16 12:21:35 +00:00
{{ end }}
</ul>
</div>
2020-08-16 19:49:25 +00:00
</div>
2020-08-29 11:16:29 +00:00
{{ end }}