aboutsummaryrefslogtreecommitdiff
path: root/cmd/_old/apeirophobia/tmpl/base.tmpl
blob: 4ebebbf5139ebc2393ad0a1a341c252efed5a2b5 (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
{{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>
            <nav>
                <a href="/">Apeirophobia</a> - <a href="/random">Random</a> - <a href="/search">Search</a>
            </nav>

            <h1>{{.Title}}</h1>
{{end}}

{{define "footer"}}
            <footer>
                <p>Copyright Yasomi. All content is generated by AI models. Nothing in this website should be taken as truth.</p>
            </footer>
        </main>
    </body>
</html>
{{end}}