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

35 lines
975 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>
2021-11-10 22:59:33 +01:00
<h4>{{> link name=institution}}</h4>
2021-11-11 10:43:03 +01:00
<div class="meta">
{{#area}}
<strong>{{.}}</strong>
{{/area}}
<div>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</div>
2021-11-10 22:59:33 +01:00
</div>
2020-10-31 13:19:52 +01:00
</header>
{{#studyType}}
{{{markdown .}}}
{{/studyType}}
{{#if courses.length}}
<h5>Courses</h5>
<ul>
{{#courses}}
<li>{{{markdown .}}}</li>
{{/courses}}
</ul>
{{/if}}
</article>
{{/each}}
</div>
</section>
{{/if}}