1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-07-03 07:50:04 +01:00
fresh-themes/partials/html/section/skills.html
2016-01-12 09:40:18 -05:00

26 lines
548 B
HTML

{{#section "skills"}}
<hr>
<section id="skills">
{{#> header-skills }}
{{> header-simple _title="SKILLS" _section="skills" }}
{{#> icon-skills }}{{/icon-skills}}
{{/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}}{{ this }} {{/each}}</td>
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/section}}