aboutsummaryrefslogtreecommitdiff
path: root/templates/base.tpl
blob: ec1aeb5722498a9704448648ea525dd1217c618d (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 lang="en">
<head>
	<meta charset="UTF-8">
	<link rel="stylesheet" href="/static/style.css" defer>
	<title>{{template "title" .}}</title>
</head>

<nav>
  <a href="/">Home</a>
  <div style="display: block; float: right;">
  </div>
</nav>
<body>

{{template "content" .}}

</body>
</html>
{{end}}