blob: 0bcf40555eec83420463df5af8a06034a806c4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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}}
|