1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-11-22 16:20:11 +00:00
fresh-themes/partials/html/section/certifications.hbs
2020-03-17 00:52:49 +00:00

36 lines
916 B
Handlebars

{{#section "certifications"}}
<hr>
<section id="certifications">
<div class="certifications">
{{#> header-certifications }}
{{> header-icon _title="CERTIFICATIONS" _section="certifications" _hdricon=(lookup . '_icon') }}
{{/header-certifications}}
<center>
{{#each r.certifications}}
<span>
{{#each certificates}}
{{#if logo}}
<img class="media-object logo"
src="../images/{{logo}}"
alt="{{name}}{{#level}} - {{.}}{{/level}}"
title="{{name}}{{#level}} - {{.}}{{/level}}" />
{{/if}}
{{/each}}
</span>
{{/each}}
</center>
</div>
<div class="certifications">
<center>
{{#each r.certifications}}
{{#each certificates}}
{{#unless logo}}
| {{name}}{{#level}} - ({{.}}){{/level}} |
{{/unless}}
{{/each}}
{{/each}}
</center>
</div>
</section>
{{/section}}