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

index.html « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01567b084c61cc73f033c2f4e9002ea5a476d686 (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
{{ partial "core/html-start.html" . }}

{{ partial "core/head.html" . }}

<body class="page-colors">
    <div class="parallax">
        {{ with .Site.Params.Header }}
            {{ partial "homepage/header-scrolling.html" . }}
        {{ end }}

        <div class="parallax__group parallax__group--auto-height">
            <div class="parallax__layer parallax__layer--base">
                <div class="row-colors center-align">
                    <h2 class="no-margin">
                        <ul class="horizontal no-bullets no-margin">
                            <li>{{ partial "homepage/svg-face.html" . }}</li>
                            <li>About Me</li>
                        </ul>
                    </h2>
                </div>

                <div class="flex-container">
                    {{ range .Site.Params.Cells.List }}
                        {{ partial "homepage/cell.html" . }}
                    {{ end }}
                </div>

                {{ with .Site.Params.Footer }}
                    <div class="row-colors right-align">
                        <ul class="main-page-footer horizontal no-bullets no-margin">
                            {{ range .List }}
                                <li>
                                    <a href="{{ .icon_link }}">
                                        <i class="fa fa-{{ .icon_class }}"></i>
                                    </a>
                                </li>
                                <li>|</li>
                            {{ end }}
                            <li>{{ $.Site.Copyright | markdownify }}</li>
                        </ul>
                    </div>
                {{ end }}
            </div>
        </div>
    </div>

    {{ partial "core/js.html" . }}
</body>

{{ partial "core/html-end.html" . }}