aboutsummaryrefslogtreecommitdiff
path: root/ui/html/base.tmpl.html
blob: bf608104c0de5a923a5fd641363976c2ff3fe351 (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
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta property="og:site_name" content="paterissa" />
    <meta property="og:type" content="object" />
    <meta property="og:title" content="Paterissa - thehinterlander's blog" />
    <meta property="og:url" content="https://paterissa.net" />
    <meta property="og:description" content="thehinterlander's repository of musings" />
    <title>{{template "title" .}} - Paterissa</title>
    <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>Paterissa</h1>
        </header>
        <hr>
        <main class="inner_pane">
            {{template "main" .}}
        </main>
    </div>
    {{template "music_player" .}}
</body>
</html>
{{end}}