1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-06-30 22:50:05 +01:00
fresh-themes/partials/html/section/skills.hbs

25 lines
531 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>
2016-01-12 15:33:19 +00:00
<td class="keywords">{{#each skills}}{{ . }} {{/each}}</td>
2016-01-06 08:51:13 +00:00
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/section}}