aboutsummaryrefslogtreecommitdiff
path: root/templates/500.html
blob: 9c55dd1135479b7922713594b0d9fba4436fcc7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "500" }}
<!DOCTYPE html>
<html>
	<head>
		{{ template "generichead" . }}
		<title>500 Internal Server Error</title>
	</head>
	<body>
		{{ template "nav" . }}
		<main>
			<h1>500 Internal Server Error</h1>
		</main>
	</body>
</html>
{{ end }}