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

_experience.html « partials « layouts - github.com/spech66/flex-bp-hugo-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23a39afbd0fbfbbad34021e35a2da85c55cb435d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ $data := (.Scratch.Get "content").Experience }}
{{ with $data }}
<section id="section-{{ .Title | urlize }}">
    <h2><i class="{{ .Icon }}"></i> {{ .Title }}</h2>
    {{ range $data.Sections }}
        <h3>{{ .Name }}</h3>
        {{ .Empolyer }} {{ .Website }} {{ .StartDate }} {{ .EndDate }}
        {{ range .Details }}
            <p>{{ . }}</p>
        {{ end }}
        {{ range .Skills }}
            <p>{{ . }}</p>
        {{ end }}
    {{ end }}
</section>
{{ end }}