resume-a4/layouts/partials/section-experience.html
Jaakko Kantojärvi 3e13c5ea2d Rewrite all layouts, data and configuration structures
* Add support for multiple pages
* Add support to reorder and move features to columns and pages
* Add support for new sections with generic widgets
2021-03-03 18:01:09 +02:00

16 lines
365 B
HTML

{{ 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 }}