1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-11-23 00:30:10 +00:00
fresh-themes/partials/html/section/skills.hbs

30 lines
733 B
Handlebars
Raw Normal View History

2016-01-06 08:51:13 +00:00
{{#section "skills"}}
<hr>
2016-01-06 08:51:13 +00:00
<section id="skills">
2016-01-12 14:40:18 +00:00
{{#> header-skills }}
2016-01-12 15:33:19 +00:00
{{> header-icon _title="SKILLS" _section="skills" _hdricon=(lookup . '_icon') }}
2016-01-12 14:40:18 +00:00
{{/header-skills}}
2016-01-06 08:51:13 +00:00
<table>
<thead>
<tr>
<th>Skill</th>
<th>Keywords</th>
</tr>
</thead>
<tbody>
{{#each r.skills.sets}}
<tr>
<td style="width: 25%;">{{ name }}</td>
2020-03-17 00:52:49 +00:00
<td class="keywords">{{#each skills }}
{{#name}}
<span title="{{level}}{{#summary}} - {{summary}}{{/summary}}">{{ name }}</span>
{{/name}}{{^name}}
{{ . }}{{/name}}{{#unless @last}}, {{/unless}}{{/each}}
</td>
2016-01-06 08:51:13 +00:00
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/section}}