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

baseof.html « _default « layouts - github.com/plopcas/papaya.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 901f73e39dd739e88e01e34e3ae6d0285d4d50ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}

<body>
    {{ partial "nav.html" . }}
    {{ partial "header.html" . }}
    <div class="container">
        <main id="main">
            {{ block "main" . }}{{ end }}
        </main>
    </div>
    {{ partial "script.html" . }}
</body>

</html>