2020-07-18 22:44:17 +02:00
|
|
|
|
{{#if resume.projects.length}}
|
|
|
|
|
<section id="projects">
|
|
|
|
|
<h3>Projects</h3>
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<div class="stack">
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#each resume.projects}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<article>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
<header>
|
|
|
|
|
<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">
|
|
|
|
|
<span>
|
|
|
|
|
{{#if roles}}
|
|
|
|
|
<strong>{{join roles}}</strong>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#entity}}
|
|
|
|
|
at <strong>{{.}}</strong>
|
|
|
|
|
{{/entity}}
|
|
|
|
|
</span>
|
|
|
|
|
{{#url}}
|
2020-10-31 14:20:25 +01:00
|
|
|
|
<a href="{{.}}">{{formatURL .}}</a>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
{{/url}}
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#description}}
|
2020-11-01 15:03:16 +01:00
|
|
|
|
{{{markdown .}}}
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/description}}
|
|
|
|
|
{{#if highlights.length}}
|
|
|
|
|
<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}}
|