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

26 lines
648 B
Handlebars
Raw Normal View History

{{#if resume.publications.length}}
<section id="publications">
<h3>Publications</h3>
<div class="stack">
{{#each resume.publications}}
<article>
2020-10-31 13:19:52 +01:00
<header>
2021-11-10 22:59:33 +01:00
<h4>{{> link}}</h4>
2021-07-18 15:21:43 +02:00
{{#publisher}}
2021-11-10 22:59:33 +01:00
<div>
2021-07-18 15:21:43 +02:00
Published by <strong>{{.}}</strong>
2021-11-10 22:59:33 +01:00
</div>
2021-07-18 15:21:43 +02:00
{{/publisher}}
2021-11-10 22:59:33 +01:00
{{#releaseDate}}
<time datetime="{{.}}">{{formatDate .}}</time>
{{/releaseDate}}
2020-10-31 13:19:52 +01:00
</header>
{{#summary}}
{{{markdown .}}}
{{/summary}}
</article>
{{/each}}
</div>
</section>
{{/if}}