1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-07-02 23:40:06 +01:00
fresh-themes/partials/html/section/skills.html

26 lines
506 B
HTML
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">
<header>
<h2>{{{sectionTitle "Skills"}}}</h2>
{{#> icon-skills }}{{/icon-skills}}
2016-01-11 18:47:14 +00:00
</header>
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>
<td class="keywords">{{#each skills}}{{ this }} {{/each}}</td>
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/section}}