Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_contacts.html « partials « layouts - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80890521b5420142b1c17e74138b3e78acb63c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ if .Site.Data.content.BasicInfo.Contacts }}
<div class="sideSection contact">
    <ul>
        {{ range .Site.Data.content.BasicInfo.Contacts }}
        <li class="contact__item">
            <i class="{{ .Icon }}"></i><span>{{ .Info | safeHTML }}</span>
        </li>
        {{ end }}
    </ul>
</div>
{{ end }}