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: 8309cf55d0f9db89b4d422af0ce784e29ec1f890 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="section">
    <h1 class="section-title">{{ .Site.Params.title_as.skills }}</h1>
    {{ range .Site.Data.features.skillsGrouped }}
    <div class="item">
        <h3 class="item-title">{{ .groupName }}</h3>
        {{ range .skills }}
        <li>{{.}}</li>
        {{ end }}
    </div>
    {{ end }}
</div>