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

32 lines
909 B
Handlebars
Raw Normal View History

{{#if resume.volunteer.length}}
<section id="volunteer">
<h3>Volunteer</h3>
<div class="stack">
{{#each resume.volunteer}}
<article>
2020-10-31 13:19:52 +01:00
<header>
2021-11-10 22:59:33 +01:00
<h4>{{position}}</h4>
2021-11-11 10:43:03 +01:00
<div class="meta">
<strong>{{> link name=organization}}</strong>
<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>
{{#summary}}
{{{markdown .}}}
{{/summary}}
{{#if highlights.length}}
<ul>
{{#highlights}}
<li>{{{markdown .}}}</li>
{{/highlights}}
</ul>
{{/if}}
</article>
{{/each}}
</div>
</section>
{{/if}}