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

baseof.html « _default « layouts - github.com/pravin/hugo-theme-prav.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76b277e660e521723a5e85abfceb81022f774c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
    {{- partial "head.html" . -}}
    <body>
        <div class="container">

            {{- partial "menu.html" . -}}
            
            <div class="pure-g">
                {{- block "main" . }}{{- end }}

                {{ if (or (eq .Page.Kind "page") (eq .RelPermalink "/")) }}
                {{- block "sidebar" . }}
                    {{- partial "sidebar.html" . -}}
                {{- end }}
                {{ end }}
            </div>
            
            {{- partial "footer.html" . -}}

        </div>
    </bod>
</html>