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: 11a4a74cd7ff2e0d85d339d2ae886f959c683c70 (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 }}
                {{ if .link }}<a href="{{ .link }}">
                    {{ if $.Site.Params.useFontAwesome }}<i class="fas fa-link"></i>
                    {{else}}&#128279;{{ end }}</a>
                {{ end }}
            </h3>
            {{ .issued_by | markdownify }} - {{ .date }}
        </div>
        {{ end }}
</div>