Add API Framework Revel Source Files
[iec.git] / src / foundation / api / revel / templates / errors / 404.html
1 <!DOCTYPE html>
2 <html lang="en">
3         <head>
4                 <title>Not found</title>
5         </head>
6         <body>
7
8 {{if .DevMode}}
9
10 {{template "errors/404-dev.html" .}}
11
12 {{else}}
13
14         {{with .Error}}
15         <h1>
16                 {{.Title}}
17         </h1>
18         <p>
19                 {{.Description}}
20         </p>
21         {{end}}
22
23 {{end}}
24
25         </body>
26 </html>