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

experience.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8db7e599cda336022a0430affe9b8eb924506595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="section">
    <h1 class="section-title">{{ .Site.Params.title_as.experience }}</h1>
    {{ $companies := slice }}
    {{ range .Site.Data.experience }}
    {{ $companies = $companies | append .company }}
{{ end }}

{{ $companies = uniq $companies }}

{{ range $companies }}
    {{ $company := . }}

    <div class="item group">
        <h3 class="item-title">{{ $company }}</h3>
    {{ range where $.Site.Data.experience "company" $company }}
    <div class="item">
        <div class="flex-row">
            <span class="job-title">{{ .name }}</span>
            <span class="date">{{ .date }}</span></div>
            <p>{{ .details | markdownify }}</p>
        </div>
    {{ end }}
    </div>
{{ end }}
</div>