2020-07-18 22:44:17 +02:00
|
|
|
|
{{#if resume.work.length}}
|
|
|
|
|
<section id="work">
|
|
|
|
|
<h3>Work</h3>
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<div class="stack">
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#each resume.work}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<article>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
<header>
|
2021-11-10 22:59:33 +01:00
|
|
|
|
<h4>{{position}}</h4>
|
2021-11-11 10:43:03 +01:00
|
|
|
|
<div class="meta">
|
|
|
|
|
<div>
|
|
|
|
|
<strong>{{> link}}</strong>
|
|
|
|
|
{{#description}}
|
|
|
|
|
<span class="bullet-item">{{.}}</span>
|
|
|
|
|
{{/description}}
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<time datetime="{{startDate}}">{{formatDate startDate}}</time> –
|
|
|
|
|
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
|
|
|
|
|
</div>
|
|
|
|
|
{{#location}}
|
|
|
|
|
<div>{{.}}</div>
|
|
|
|
|
{{/location}}
|
2021-11-10 23:41:05 +01:00
|
|
|
|
</div>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
</header>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#summary}}
|
2020-11-01 15:03:16 +01:00
|
|
|
|
{{{markdown .}}}
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/summary}}
|
|
|
|
|
{{#if highlights.length}}
|
|
|
|
|
<ul>
|
|
|
|
|
{{#highlights}}
|
2021-10-04 21:30:47 +02:00
|
|
|
|
<li>{{{markdown .}}}</li>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/highlights}}
|
|
|
|
|
</ul>
|
|
|
|
|
{{/if}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
</article>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{{/if}}
|