mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 12:40:11 +00:00
24 lines
465 B
HTML
24 lines
465 B
HTML
{{#section "skills"}}
|
|
<section id="skills">
|
|
<header>
|
|
<h2>{{{sectionTitle "Skills"}}}</h2><hr>
|
|
</header>
|
|
<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}}
|