Welcome to mirror list, hosted at ThFree Co, Russian Federation.

skills_grouped.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e33c719047816e5fd691a6a2c81d560407748ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="section">
    <h1 class="section-title">Skills</h1>
    {{ range .Site.Data.features.skillsGrouped }}
    <div class="item">
        <h3 class="item-title">{{ .groupName }}</h3>
        {{ range .skills }}
        <li>{{.}}</li>
        {{ end }}
    </div>
    {{ end }}
</div>