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

12 lines
281 B
HTML
Raw Normal View History

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