json-theme-even-fork/partials/education.hbs

35 lines
969 B
Handlebars
Raw Normal View History

{{#if resume.education.length}}
<section id="education">
<h3>Education</h3>
<div class="stack">
{{#each resume.education}}
<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>
{{#studyType}}
{{{markdown .}}}
{{/studyType}}
{{#if courses.length}}
<h5>Courses</h5>
<ul>
{{#courses}}
<li>{{.}}</li>
{{/courses}}
</ul>
{{/if}}
</article>
{{/each}}
</div>
</section>
{{/if}}