mirror of https://github.com/mikkolehtisalo/iw.git
21 lines
263 B
HTML
21 lines
263 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Not found</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{{if eq .RunMode "dev"}}
|
||
|
{{template "errors/404-dev.html" .}}
|
||
|
{{else}}
|
||
|
{{with .Error}}
|
||
|
<h1>
|
||
|
{{.Title}}
|
||
|
</h1>
|
||
|
<p>
|
||
|
{{.Description}}
|
||
|
</p>
|
||
|
{{end}}
|
||
|
{{end}}
|
||
|
</body>
|
||
|
</html>
|