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

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