aboutsummaryrefslogtreecommitdiff
path: root/templates/500.html
blob: fe30837c2240251acaae31c3cf750206120b4487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "500" }}
<!DOCTYPE html>
<html id="legit">
	<title>500</title>
{{ template "head" . }}
	<body>
		{{ template "nav" . }}
		<main>
			<h1>500 Internal Server Error</h1>
			<p>
			You may wish to contact the instance administrator.
			</p>
{{ template "foot" . }}
		</main>
	</body>
</html>
{{ end }}