aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 67bc7b61d7803b0160d03d4c34999cedfa675c9d (plain) (blame)
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
{{- define "base" -}}
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<link rel="stylesheet" href="/static/style.css" />
		<title>{{ block "title" . }}Lindenii Forge{{ end }}</title>
	</head>
	<body class="{{ block "body-class" . }}{{ end }}">
		<header>
			<a id="site-title" href="/">
				{{ block "forge-title" . }}
					Lindenii Forge
				{{ end }}
			</a>
			<span id="header-userinfo" href="/">
			</span>
		</header>
		<main>
		{{ block "main" . }}
		{{ end }}
		</main>
	</body>
</html>
{{- end -}}