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

projects.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d654ed8038b82ea0761a9fccdf9a712b090ed20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="section">
    <h1 class="section-title">{{ .Site.Params.title_as.projects }}</h1>
        {{ range .Site.Data.projects }}
        <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>
            {{ .company | markdownify }} - {{ .date }}
            <p>{{ .details }}</p>
        </div>
        {{ end }}
</div>