aboutsummaryrefslogtreecommitdiff
path: root/ui/html/base.tmpl.html
blob: 628994efd32f644f3e3c0e8dff47b8e06af43fbd (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
35
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta property="og:site_name" content="paterissa" />
    <meta property="og:type" content="object" />
    <meta property="og:title" content="{{template "title" .}} - Paterissa" />
    <meta property="og:image" content="https://paterissa.net/static/get?file=favicon.ico" />
    <meta property="og:description" content={{template "description" .}} />
    <title>{{template "title" .}} - Paterissa</title>
    <link rel="icon" href="/static/get?file=favicon.ico" type="image/x-icon">
    <link rel="stylesheet" href="/static/get?file=app.css">
</head>
<body>
    <img src="/static/get?file=images/bg.png" id="bg-image">
    <div class="pane">
        <header>
            <h1><a href="https://paterissa.net">Paterissa</a></h1>
            <nav>
                <a href="https://git.paterissa.net" class="nav_tag">Git</a>
                <a href="https://starless.paterissa.net" class="nav_tag">Starless</a>
                <a href="https://charts.paterissa.net" class="nav_tag">Parliament Builder</a>
            </nav>
        </header>
        <hr>
        <main class="inner_pane">
            {{template "main" .}}
        </main>
    </div>
    {{template "music_player" .}}
</body>
</html>
{{end}}