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

12 lines
281 B
HTML
Raw Normal View History

2021-07-28 18:24:15 +02:00
{{ if .BasicInfo.Contacts }}
2020-08-16 13:21:35 +01:00
<div class="sideSection contact">
<ul>
2021-07-28 18:24:15 +02:00
{{ range .BasicInfo.Contacts }}
2020-08-29 12:16:29 +01:00
<li class="contact__item">
<i class="{{ .Icon }}"></i><span>{{ .Info | safeHTML }}</span>
</li>
2020-08-16 13:21:35 +01:00
{{ end }}
</ul>
2020-08-16 20:49:25 +01:00
</div>
2020-08-29 12:16:29 +01:00
{{ end }}