2020-07-18 22:44:17 +02:00
|
|
|
|
{{#if resume.education.length}}
|
|
|
|
|
<section id="education">
|
|
|
|
|
<h3>Education</h3>
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<div class="stack">
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#each resume.education}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
<article>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
<header>
|
|
|
|
|
<div class="spaced-list">
|
2021-07-18 15:21:43 +02:00
|
|
|
|
<h4>{{> link name=institution}}</h4>
|
2020-10-31 13:19:52 +01:00
|
|
|
|
<span>
|
|
|
|
|
<time datetime="{{startDate}}">{{formatDate startDate}}</time> –
|
|
|
|
|
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2021-07-18 15:21:43 +02:00
|
|
|
|
{{#area}}
|
|
|
|
|
<strong>{{.}}</strong>
|
|
|
|
|
{{/area}}
|
2020-10-31 13:19:52 +01:00
|
|
|
|
</header>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{#studyType}}
|
2020-11-01 15:03:16 +01:00
|
|
|
|
{{{markdown .}}}
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/studyType}}
|
|
|
|
|
{{#if courses.length}}
|
|
|
|
|
<h5>Courses</h5>
|
|
|
|
|
<ul>
|
|
|
|
|
{{#courses}}
|
2021-10-04 21:30:47 +02:00
|
|
|
|
<li>{{{markdown .}}}</li>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/courses}}
|
|
|
|
|
</ul>
|
|
|
|
|
{{/if}}
|
2020-07-26 00:18:06 +02:00
|
|
|
|
</article>
|
2020-07-18 22:44:17 +02:00
|
|
|
|
{{/each}}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{{/if}}
|