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

_education.html « partials « layouts - github.com/spech66/flex-bp-hugo-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8eecec786f012c2c10a4dc86588e77a26fb13264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ $s := slice (.Scratch.Get "content").AcademicEducation (.Scratch.Get "content").ProfessionalTraining (.Scratch.Get "content").SchoolEducation (.Scratch.Get "content").FurtherEducation }}
{{ range $s }}
    {{ with . }}
    <section id="section-{{ .Title | urlize }}">
        <h2><i class="{{ .Icon }}"></i> {{ .Title }}</h2>
        {{ range .Sections }}
            <h3>{{ .Name }}</h3>
            {{ .Organisation }} {{ .Website }} {{ .StartDate }} {{ .EndDate }}
            {{ .Qualification }}
        {{ end }}
    </section>
    {{ end }}
{{ end }}