summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 854a845c42a2033cea471af7166669d03ebc947c (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 name="viewport" content="width=device-width, initial-scale=1">
    <link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico">
    <link rel="stylesheet" type="text/css" href="/static/theme.css">

    {{ template "stylesheets" . }}
    {{ template "css" . }}
    <title>Tube</title>
  </head>
<body>
  <nav>
    <a href="/">Tube</a>
    <a class="centered" href="/upload">Upload</a>
  </nav>
  <main>
    {{template "content" .}}
  </main>
</body>
{{ template "scripts" . }}
</html>
{{end}}
{{ define "css" }}{{ end }}
{{ define "scripts" }}{{ end }}
{{ define "stylesheets" }}{{ end }}