summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: d6e67b9a906544a3ab7a77ea0e1b4a9df2811052 (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
29
30
{{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">
    <link rel="stylesheet" type="text/css" href="/static/upload.css">

    {{ template "stylesheets" . }}
    {{ template "css" . }}
    <title>Tube</title>
  </head>
<body>
  <nav>
    <a href="/">Tube</a>
    <a href="/?trending=1">Trending</a>
    <a class="centered" style="text-indent: 0;" href="/upload">Upload</a>
  </nav>
  <main>
    {{template "content" .}}
  </main>
</body>
{{ template "scripts" . }}
</html>
{{end}}
{{ define "css" }}{{ end }}
{{ define "scripts" }}{{ end }}
{{ define "stylesheets" }}{{ end }}