1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-06-06 20:36:16 +01:00

Introduce global theme partials.

This commit is contained in:
hacksalot
2016-01-06 03:51:13 -05:00
parent 9fd0ce9695
commit b4a93020ec
24 changed files with 599 additions and 59 deletions

23
partials/html/skills.html Normal file
View File

@ -0,0 +1,23 @@
{{#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}}