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

skills.html « sections « partials « layouts - github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0770d115bea5a82b9558e198c1e18782f7626e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{{ "<!-- SKILLS -->" | safeHTML }}
{{ $data := .Site.Data.skills }}
<section class="section" id="skills">
    {{ with $data.title }}
        <div class="container-fluid">
            <div class="row">
                <div class="text-center">
                    <h2 class="section-heading">{{ . }}</h2>
                    <hr class="primary">
                </div>
            </div>
        </div>
    {{ end }}

    <div class="container-fluid">
        <div class="row">
            <div class="col-lg-6 col-lg-offset-1 text-primary">
                <p>{{ $data.text | markdownify }}</p>
            </div>
            {{ with $data.download }}
            <div class="col-lg-4 col-lg-offset-8 text-center">
                <a href="/files/{{ .filename }}" download class="btn btn-primary btn-xl">
                    {{ with .button_text }}
                        {{ . }}
                    {{ end }}
                    {{ if .icon }}
                        {{ $pack := or .icon_pack "fa" }}
                        <i class="{{ $pack }} {{ .icon }} wow bounceIn"></i>
                    {{ end }}
                </a>
            </div>
            {{ end }}
        </div>

        {{/* Tags & Categories */}}
        {{ $project_sections := .Site.Params.projects.categories }}
        <div class="row">
            <div class="col-lg-5 col-lg-offset-1">
                <div class="skills-container">
                    {{ $label := or $data.tags_label "TAGS" }}
                    <h4>{{ $label }}</h4>
                    <div class="tags">
                        {{ range $project_sections }}
                            {{ with $.Site.GetPage "section" . }}
                                {{ $params := (dict "type" "tags" "context" . "scratch" .Scratch "removeDuplicates" true) }}
                                {{ partial "utils/list-keywords.html" $params }}
                            {{ end }}
                        {{ end }}
                    </div>
                </div>
            </div>

            <div class="col-lg-5">
                <div class="skills-container">
                    {{ $label := or $data.categories_label "CATEGORIES" }}
                    <h4>{{ $label }}</h4>
                    <div class="tags">
                        {{ range $project_sections }}
                            {{ with $.Site.GetPage "section" . }}
                                {{ $params := (dict "type" "categories" "context" . "scratch" .Scratch "removeDuplicates" true) }}
                                {{ partial "utils/list-keywords.html" $params }}
                            {{ end }}
                        {{ end }}
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>