Merge "Add INFO.yaml"
[iec.git] / src / foundation / api / revel / templates / errors / 404-dev.html
1 <style type="text/css">
2         html, body {
3                 margin: 0;
4                 padding: 0;
5                 font-family: Helvetica, Arial, Sans;
6                 background: #EEEEEE;
7         }
8         .block {
9                 padding: 20px;
10                 border-bottom: 1px solid #aaa;
11         }
12         #header h1 {
13                 font-weight: normal;
14                 font-size: 28px;
15                 margin: 0;
16         }
17         #more {
18                 color: #666;
19                 font-size: 80%;
20                 border: none;
21         }
22         #header {
23                 background: #FFFFCC;
24         }
25         #header p {
26                 color: #333;
27         }
28         #routes {
29                 background: #f6f6f6;
30         }
31         #routes h2 {
32                 font-weight: normal;
33                 font-size: 18px;
34                 margin: 0 0 10px 0;
35         }
36         #routes ol {
37
38         }
39         #routes li {
40                 font-size: 14px;
41                 font-family: monospace;
42                 color: #333;
43         }
44 </style>
45
46 <div id="header" class="block">
47         {{with .Error}}
48         <h1>
49                 {{.Title}}
50         </h1>
51         <p>
52                 {{.Description}}
53         </p>
54         {{end}}
55 </div>
56 <div id="routes" class="block">
57         <h2>These routes have been tried, in this order :</h2>
58         <ol>
59                 {{range .Router.Routes}}
60                         <li>{{pad .Method 10}}{{pad .Path 50}}{{.Action}} {{with .ModuleSource}}(Route Module:{{.Name}}){{end}}</li>
61                 {{end}}
62         </ol>
63 </div>