File: 404.html

package info (click to toggle)
golang-github-revel-revel 0.12.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 828 kB
  • sloc: xml: 7; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
	<head>
		<title>Not found</title>
	</head>
	<body>

{{if .DevMode}}

{{template "errors/404-dev.html" .}}

{{else}}

	{{with .Error}}
	<h1>
		{{.Title}}
	</h1>
	<p>
		{{.Description}}
	</p>
	{{end}}

{{end}}

	</body>
</html>