aboutsummaryrefslogtreecommitdiff
path: root/templates/page/404.gohtml
blob: 76f91281973949e15760d92f0069ccf3094393b6 (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
{{define "body"}}
    <main style="{{ .GetBackground }}">
        <div class="header">
            <h1 class="header__title">404 - Not found</h1>
            <nav>
                <a href="/">Home</a>
            </nav>
        </div>
        <p>
            Oh no, you are lost. Do you need help?
        </p>
        <nav class="links" style="{{ .Color.Button.GetBackground }}{{ .Color.Button.GetTextColor }}">
            <div class="link">
                <a href="/legal">Legal information</a>
            </div>
            <div class="link">
                <a href="/">Home</a>
            </div>
            <div class="link">
                <a href="/now">Now</a>
            </div>
        </nav>
    </main>
{{end}}