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

baseof.html « _default « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e08ad7d5f5ee97f37e55d22995784d14b91b130f (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
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
    <head>
        {{ block "head" . }}
        {{ partial "head/metadata.html" . }}
        {{ partial "head/openGraph.html" . }}
        {{ partial "head/favicons.html" . }}
        {{ partial "head/css.html" . }}
        {{ end }}
        <!-- Include page specific css -->
        {{ block "customCSS" . }}
        {{ end }}
    </head>
    <body>
        <section id="top" class="section">
            <!-- Begin Title -->
            <div class="container hero {{ if .Site.Params.fadeIn | default true }} fade-in one {{ end }}">
                {{ block "title" . }}
                <h1 class="bold-title is-1">{{ .Title | markdownify }}</h1>
                {{ end }}
            </div>
            <!-- End Title -->
            <div class="section {{ if .Site.Params.fadeIn | default true }} fade-in two {{ end }}">
                {{ partial "nav.html" . }}

                {{ block "main" . }}
                {{ end }}

                {{ block "footer" . }}
                {{ partial "top-icon-with-hr.html" . }}
                {{ partial "footer/text.html" . }}
                {{ end }}
            </div>
        </section>
        {{ block "js-include" . }}
        {{ partial "footer/scripts.html" . }}
        {{ end }}
        <!-- Include page specific scripts -->
        {{ block "customScripts" . }}
        {{ end }}
    </body>
</html>