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

_personaldata.html « partials « layouts - github.com/spech66/flex-bp-hugo-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4e0f78bc87bd04b8f4d9fedd8cd7b3a0f29d5d9 (plain)
1
2
3
4
5
6
7
8
9
{{ $data := (.Scratch.Get "content").PersonalData }}
{{ 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 }}
</section>
{{ end }}