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:
@ -1,6 +1,3 @@
|
||||
<header>
|
||||
{{#if _icon}}
|
||||
{{> (lookup . '_hdricon') }}
|
||||
{{/if}}
|
||||
<h2>{{{sectionTitle _title _section}}}</h2>
|
||||
<h2>{{#if _icon}}{{> (lookup . '_hdricon') }}{{/if}}{{{sectionTitle _title _section}}}</h2>
|
||||
</header>
|
||||
|
@ -1,4 +1,5 @@
|
||||
{{#if highlights}}
|
||||
<b>Highlights:</b>
|
||||
<ul>
|
||||
{{#each highlights}}
|
||||
<li>{{{ . }}}</li>
|
||||
|
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>
|
||||
|
8
partials/html/work-projects.hbs
Normal file
8
partials/html/work-projects.hbs
Normal file
@ -0,0 +1,8 @@
|
||||
{{#if projects}}
|
||||
<p class="projects">
|
||||
<b>Projects:</b>
|
||||
{{#each projects}}
|
||||
{{{ name }}}{{#if customer}}(<i>{{customer}}</i>){{/if}}{{#unless @last}}, {{/unless}}
|
||||
{{/each}}
|
||||
</p>
|
||||
{{/if}}
|
Reference in New Issue
Block a user