Initial Commit to Add RestAPI Server to IEC
[iec.git] / src / foundation / api / apiserver / app / views / errors / 404.html
1 <!DOCTYPE html>
2 <html lang="en">
3         <head>
4                 <title>Not found</title>
5         </head>
6         <body>
7 {{if eq .RunMode "dev"}}
8 {{template "errors/404-dev.html" .}}
9 {{else}}
10         {{with .Error}}
11         <h1>
12                 {{.Title}}
13         </h1>
14         <p>
15                 {{.Description}}
16         </p>
17         {{end}}
18 {{end}}
19         </body>
20 </html>