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

certificates.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 646ea6840fe9c23f5226477f3d9b513545da7b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="section">
    <h1 class="section-title">{{ .Site.Params.title_as.certificates }}</h1>
        {{ range .Site.Data.features.certificates }}
        <div class="item">
            <h3 class="item-title">{{ .name }}</h3>
            {{ if .link }}<a href="{{ .link }}">
                {{ if $.Site.Params.useFontAwesome }}<i class="fas fa-link"></i>
                {{else}}&#128279;{{ end }}
                </a>
            {{ end }}
            {{ .issued_by | markdownify }} - {{ .date }}
        </div>
        {{ end }}
</div>