mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2025-06-07 12:56:15 +01:00
add certifications & qr code
This commit is contained in:
35
partials/html/section/certifications.hbs
Normal file
35
partials/html/section/certifications.hbs
Normal file
@ -0,0 +1,35 @@
|
||||
{{#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}}
|
@ -12,6 +12,7 @@
|
||||
{{{ summary }}}
|
||||
{{> highlights }}
|
||||
{{#if curriculum}}<span class="keywords">{{#each curriculum}}{{{ . }}} {{/each}}</span>{{/if}}
|
||||
{{#if grade}} - <strong>{{grade}}</strong>{{/if}}
|
||||
</div>
|
||||
{{/body-education}}
|
||||
{{/each}}
|
||||
|
@ -7,5 +7,6 @@
|
||||
{{#> body-info }}
|
||||
{{{ r.info.brief }}}
|
||||
{{/body-info}}
|
||||
<img class="qr" src="../images/qr.png" />
|
||||
</section>
|
||||
{{/has}}
|
||||
|
@ -4,15 +4,12 @@
|
||||
{{#> header-interests }}
|
||||
{{> header-icon _title="INTERESTS" _section="interests" _hdricon=(lookup . '_icon') }}
|
||||
{{/header-interests}}
|
||||
<center>
|
||||
{{#each r.interests}}
|
||||
{{#> body-interests }}
|
||||
<div>
|
||||
<h3><em>{{{ name }}}</em></h3>
|
||||
<span class="tenure">{{date date 'YYYY' }}</span>
|
||||
{{{ summary }}}
|
||||
{{> highlights }}
|
||||
</div>
|
||||
| <em>{{{ name }}}</em> |
|
||||
{{/body-interests}}
|
||||
{{/each}}
|
||||
</center>
|
||||
</section>
|
||||
{{/section}}
|
||||
|
@ -15,7 +15,12 @@
|
||||
{{#each r.skills.sets}}
|
||||
<tr>
|
||||
<td style="width: 25%;">{{ name }}</td>
|
||||
<td class="keywords">{{#each skills}}{{ . }} {{/each}}</td>
|
||||
<td class="keywords">{{#each skills }}
|
||||
{{#name}}
|
||||
<span title="{{level}}{{#summary}} - {{summary}}{{/summary}}">{{ name }}</span>
|
||||
{{/name}}{{^name}}
|
||||
{{ . }}{{/name}}{{#unless @last}}, {{/unless}}{{/each}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user