aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/base.html
blob: 768d7eb1ec0ec544630d0a441d1811ef4b9d54d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang=en>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {{ block "head" . }}<title>Nonsense Time Dashboard</title>{{ end }}
    <link rel="stylesheet" href="/static/styles.css">
</head>
<body>
    {{ block "body" . }}{{ end }}
</body>
</html>