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

45 lines
1.3 KiB
Handlebars
Raw Normal View History

{{#if resume.projects.length}}
<section id="projects">
<h3>Projects</h3>
<div class="stack">
{{#each resume.projects}}
<article>
2020-10-31 13:19:52 +01:00
<header>
<div class="spaced-list">
<h4>{{name}}</h4>
<span>
<time datetime="{{startDate}}">{{formatDate startDate}}</time>
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
</span>
</div>
<div class="spaced-list">
<span>
{{#if roles}}
<strong>{{join roles}}</strong>
{{/if}}
{{#entity}}
at <strong>{{.}}</strong>
{{/entity}}
</span>
{{#url}}
<a href="{{.}}">{{formatURL .}}</a>
2020-10-31 13:19:52 +01:00
{{/url}}
</div>
</header>
{{#description}}
{{{markdown .}}}
{{/description}}
{{#if highlights.length}}
<h5>Highlights</h5>
<ul>
{{#highlights}}
<li>{{.}}</li>
{{/highlights}}
</ul>
{{/if}}
</article>
{{/each}}
</div>
</section>
{{/if}}