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: 2d2631605c87a5a1bf5a3604b45453b402386700 (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 }}
		<p>{{ .details | markdownify }}</p>
		{{ end }}
	</div>
	{{ end }}
</div>
{{ end }}