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

section-experience.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fa580ab80e492911cf232d039cddd5f26323170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ range .Data.experience }}
<div class="item group">
	<h2 class="item-title">{{ .company }}</h2>
	{{ range .roles }}
	<div class="item">
		<div class="flex-row">
			<span class="job-title">{{ .role }}</span>
			<span class="date">{{ .date }}</span>
		</div>
		{{ if .details }}
		{{- partial "markdown" .details }}
		{{ end }}
	</div>
	{{ end }}
</div>
{{ end }}