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

_contacts.html « partials « layouts - github.com/spech66/flex-bp-hugo-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db392966568d9c168b65b9b805056010ace08418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $data := (.Scratch.Get "content").Contacts2 }}
{{ with $data }}
<section id="section-{{ .Title | urlize }}">
    <h2><i class="{{ .Icon }}"></i> {{ .Title }}</h2>
    {{ range $data.Contacts }}
        <p><i class="{{ .Icon }}"></i> {{ .Name }}: {{ .Value }}</p>
    {{ end }}
    <ul>
        {{- partial "social.html" $ -}}
    </ul>
</section>
{{ end }}