1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-06-07 04:46:16 +01:00

add certifications & qr code

This commit is contained in:
Rioting Pacifist
2020-03-17 00:52:49 +00:00
parent 3cbbc36818
commit 977da72788
14 changed files with 117 additions and 45 deletions

View File

@ -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>

View File

@ -1,4 +1,5 @@
{{#if highlights}}
<b>Highlights:</b>
<ul>
{{#each highlights}}
<li>{{{ . }}}</li>

View 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}}

View File

@ -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}}

View File

@ -7,5 +7,6 @@
{{#> body-info }}
{{{ r.info.brief }}}
{{/body-info}}
<img class="qr" src="../images/qr.png" />
</section>
{{/has}}

View File

@ -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}}

View File

@ -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>

View 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}}