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-07-18 22:44:17 +02:00
|
|
|
|
<div class="spaced-list">
|
|
|
|
|
<h4>{{name}}</h4>
|
|
|
|
|
<span>
|
|
|
|
|
<time datetime="{{startDate}}">{{formatDate startDate}}</time> –
|
|
|
|
|
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="spaced-list">
|
|
|
|
|
{{#position}}
|
|
|
|
|
<strong>{{.}}</strong>
|
|
|
|
|
{{/position}}
|
|
|
|
|
{{#url}}
|
|
|
|
|
<a href="{{.}}">{{.}}</a>
|
|
|
|
|
{{/url}}
|
|
|
|
|
</div>
|
|
|
|
|
{{#summary}}
|
|
|
|
|
<p>{{.}}</p>
|
|
|
|
|
{{/summary}}
|
|
|
|
|
{{#if highlights.length}}
|
|
|
|
|
<h5>Highlights</h5>
|
|
|
|
|
<ul>
|
|
|
|
|
{{#highlights}}
|
|
|
|
|
<li>{{.}}</li>
|
|
|
|
|
{{/highlights}}
|
|
|
|
|
</ul>
|
|
|
|
|
{{/if}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
</article>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{{/if}}
|