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

25 lines
531 B
Handlebars

{{#section "skills"}}
<hr>
<section id="skills">
{{#> header-skills }}
{{> header-icon _title="SKILLS" _section="skills" _hdricon=(lookup . '_icon') }}
{{/header-skills}}
<table>
<thead>
<tr>
<th>Skill</th>
<th>Keywords</th>
</tr>
</thead>
<tbody>
{{#each r.skills.sets}}
<tr>
<td style="width: 25%;">{{ name }}</td>
<td class="keywords">{{#each skills}}{{ . }} {{/each}}</td>
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/section}}