aboutsummaryrefslogtreecommitdiff
path: root/tmpl/root
blob: c357ad16a1c8e912a15cd40fc4240807b6f9a4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{define "root"}}
<!DOCTYPE html>
<html>
<head>
	<title>{{template "title" .}}</title>
	<link rel='stylesheet' type='text/css' href='/css/fonts.css'>
	<link rel='stylesheet' type='text/css' href='/css/style.css'>
	<link rel='stylesheet' type='text/css' href='/css/font-awesome.min.css'>
</head>
<body>
<nav>
	<span>{{template "title" .}}</span>
	{{template "action" .}}
	<a href="/" title="home"><i class="fa fa-home"></i></a>
	<a href="/index" title="index"><i class="fa fa-list"></i></a>
</nav>
{{template "content" .}}
</body>
</html>
{{end}}