aboutsummaryrefslogtreecommitdiff
path: root/cmd/within.website/tmpl/base.tmpl
blob: 78e188d044a3d3bebaf7d8652b008ded3a342993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{define "header"}}
<!DOCTYPE html>
<html>
    <head>
        <title>{{.Title}}</title>
        <link rel="stylesheet" href="https://cdn.xeiaso.net/static/pkg/xess/xess.css" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    </head>
    <body id="top">
        <main>
            <h1>{{.Title}}</h1>
{{end}}

{{define "footer"}}
            <footer>
                <p>Need help with these packages? Inquire <a href="https://github.com/Xe">Within</a>.</p>
            </footer>
        </main>
    </body>
</html>
{{end}}