aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: c2ca4978712f33fd4541f477740fc315ad58724b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<link rel="stylesheet" type="text/css" href="/static/style.css">
		<script src="/static/htmx.min.js"></script>
		<title>{{block "title" .}}{{end}} - docspace</title>
	</head>
	<body>
		{{block "nav" .}}{{end}}
		<div class="content">
		{{block "content" .}}
		{{end}}
		</div>
	</body>
</html>