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

baseof.html « _default « layouts - github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fa2314b451459c9c5fad111cbbbcc9b95f5b093 (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
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
    <head>
        {{ partial "head.html" . }}
    </head>

    <body id="page-top">
        {{ block "header" . }}
            <header>
                {{ partial "nav.html" (dict "context" . "fixed" false) }}
                {{ partial "pages/hero.html" . }}
            </header>
        {{ end }}

        {{ block "body" . }}
            <main id="list-content">
                {{ block "sidebar" . }}
                    {{ partial "pages/sidebar.html" . }}
                {{ end }}
                <div class="list-page">
                    <div class="list-page-container">
                        <article class="list-page-content">
                            {{ block "title" . }}
                                {{ partial "pages/title.html" . }}
                            {{ end }}

                            {{ block "content" . }}{{ end }}

                            {{ block "lists" . }}
                                {{ partial "pages/lists.html" . }}
                            {{ end }}
                        </article>
                    </div>
                </div>
            </main>
        {{ end }}

        {{ block "footer" . }}
            <footer>
                {{ partial "footer.html" . }}
            </footer>
        {{ end }}
        {{ block "tail" . }}
            {{ partial "tail.html" . }}
        {{ end }}
    </body>
</html>