summaryrefslogtreecommitdiffstats
path: root/ui/html/base.tmpl.html
blob: 58122a047f5e4833ebf1307559412bec6702eef8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "base" }}
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width" />
        <link rel="stylesheet" href="/static/css/main.css">
        <link rel="shortcut icon" href="/static/img/favicon.ico", type='image/x-icon'>
        <!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700"> -->
        <title>{{ template "title" .}} - DED</title>
    </head>
    <body>
        <header>
            {{ template "nav" . }}
        </header>
        <main>
            {{ template "main" . }} <!-- DONT FORGET THE DOT!!! -->
        </main>
    </body>
</html>
{{ end }}