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

baseof.html « _default « layouts - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5452483037c336b4c4a6554c32b34da7d0e60cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
    <head>
        {{- partial "head/metadata.html" . -}}
        {{- partial "head/css.html" . -}}
        {{- partial "head/rss.html" . -}}
        {{- partial "head/scripts" . -}}
        {{- template "_internal/opengraph.html" . -}}
        {{- template "_internal/twitter_cards.html" . -}}
    </head>
    <body class="is-preload">
        <div id="page-wrapper">
            {{- partial "header.html" . -}}
            <section id="main" class="container {{ with .Params.size }}{{ . }}{{ end }}">
                {{- block "main" . }}{{- end }}
            </section>
            {{- partial "footer/footer.html" . -}}
        </div>
    </body>
</html>