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

about.html « sections « partials « layouts - github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97a40561e33ef39d1652232b2c395487145d7fb7 (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
{{ "<!-- ABOUT -->" | safeHTML }}
{{ with .Site.Data.about }}
    <section class="section bg-primary" id="about">
        <div class="container-fluid">
            <div class="row">
                <div class="col-md-10 col-md-offset-2">
                    {{ with .title }}
                        <h2 class="section-heading">{{ . }}</h2>
                        <hr class="primary light">
                    {{ end }}
                </div>
            </div>
        </div>
        <div class="container">
            <div class="row">
                <div class="col-xs-12 col-md-4">
                    <div class="profile">
                        {{ with .avatar }}
                            <div class="portrait" title="avatar: {{ . }}" style="background-image: url('{{ (printf "images/%s" .) | relURL }}');"></div>
                        {{ end }}
                        {{ with .short_text }}
                            <div class="text-primary">
                                <p>{{ . | markdownify }}</p>
                            </div>
                        {{ end }}
                    </div>
                </div>

                {{ with .long_text }}
                    <div class="col-xs-12 col-md-8 text-tertiary">
                        <p>{{ . | markdownify }}</p>
                    </div>
                {{ end }}
            </div>
        </div>
    </section>
{{ end }}