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

baseof.html « _default « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fd1a6724658281c54c8f8bcb83a343d4237011b (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
<!DOCTYPE html>
<html lang='{{ .Site.LanguageCode }}'>
{{- partial "head.html" . -}}

<body>
    <header class="fixed w-full h-16 z-50 bg-secondary-bg">
        <div class="container mx-auto">
            <div class="max-w-screen-xl">
                {{- partial "header.html" . -}}
            </div>
        </div>
    </header>

    <main class="min-h-screen pt-16">
        <div class="container mx-auto ">
            <div class="max-w-screen-xl pt-12 lg:px-4 xl:px-8">
                {{- partial "dev-size-indicator.html" . -}}
                {{- block "main" . }}{{- end }}
            </div>
        </div>
    </main>

    <footer>
        <div class="container mx-auto">
            <div class="max-w-screen-xl">
                {{- partial "dev-parameters.html" . -}}
                {{- partial "footer.html" . -}}
            </div>
        </div>
    </footer>

</body>

</html>