summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 64db6b532aa43e59c72c6634fc5a399a339bd804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
		<script src="/static/htmx-2.0.4.min.js"></script>
		<link rel="stylesheet" href="/static/style.css">
		<title>{{block "title" .}}{{end}} - grimg</title>
	</head>
	<body>
		{{block "content" .}}{{end}}
	</body>
</html>