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: 7db932d8d407f6f4b6b5bba335b8ebaf3f7a5df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="section">
    <h1 class="section-title">{{ .Site.Params.title_as.experience }}</h1>
    {{ range .Site.Data.experience }}
    <div class="item group">
        <h3 class="item-title">{{ .company }}</h3>
        {{ range .roles }}
        <div class="item">
            <div class="flex-row">
                <span class="job-title">{{ .role }}</span>
                <span class="date">{{ .date }}</span>
            </div>
            <p>{{ .details | markdownify }}</p>
        </div>        
        {{ end }}
    </div>
    {{ end }}
</div>