resume-a4/layouts/partials/skills_grouped.html

11 lines
318 B
HTML
Raw Normal View History

2020-09-01 00:03:58 +02:00
<div class="section">
<h1 class="section-title">{{ .Site.Params.title_as.skills }}</h1>
2020-09-01 00:03:58 +02:00
{{ range .Site.Data.features.skillsGrouped }}
<div class="item">
<h3 class="item-title">{{ .groupName }}</h3>
{{ range .skills }}
<li>{{.}}</li>
{{ end }}
</div>
{{ end }}
</div>