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

_interests.html « partials « layouts - github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abcba778da5266bf3aa758fcde38efb63990991a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ if .Site.Data.content.Interests }}
<div class="sideSection">
    <div class="sideSection__heading">
        <h2 class="sideSection__title">
            Interests
        </h2>
    </div>
    <div class="sideSection__content">
        <ul class="interests">
            {{ range .Site.Data.content.Interests }}
                <li class="interests__item">{{ . }}</li>
            {{ end }}
        </ul>
    </div>
</div>
{{ end }}