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

37 lines
1022 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.projects.length}}
<section id="projects">
<h3>Projects</h3>
<div class="stack">
{{#each resume.projects}}
<article>
<header>
<h4>{{> link}}</h4>
<div>
{{#if roles}}
<strong>{{join roles}}</strong>
{{/if}}
{{#entity}}
at <strong>{{.}}</strong>
{{/entity}}
</div>
<div>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</div>
</header>
{{#description}}
{{{markdown .}}}
{{/description}}
{{#if highlights.length}}
<ul>
{{#highlights}}
<li>{{{markdown .}}}</li>
{{/highlights}}
</ul>
{{/if}}
</article>
{{/each}}
</div>
</section>
{{/if}}