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

35 lines
975 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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