2020-12-13 13:53:20 +01:00
|
|
|
{{#if resume.certificates.length}}
|
|
|
|
<section id="certificates">
|
|
|
|
<h3>Certificates</h3>
|
|
|
|
<div class="stack">
|
|
|
|
{{#each resume.certificates}}
|
|
|
|
<article>
|
|
|
|
<header>
|
2021-11-10 22:59:33 +01:00
|
|
|
<h4>{{> link}}</h4>
|
2021-11-11 10:43:03 +01:00
|
|
|
<div class="meta">
|
|
|
|
{{#issuer}}
|
|
|
|
<div>
|
|
|
|
Issued by <strong>{{.}}</strong>
|
|
|
|
</div>
|
|
|
|
{{/issuer}}
|
|
|
|
{{#date}}
|
|
|
|
<time datetime="{{.}}">{{formatDate .}}</time>
|
|
|
|
{{/date}}
|
|
|
|
</div>
|
2020-12-13 13:53:20 +01:00
|
|
|
</header>
|
|
|
|
</article>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{/if}}
|