summaryrefslogtreecommitdiff
path: root/data/templates/exception.htm
blob: dc07fc576eebfa608366592b413e9d187ffbb566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
 <head>
  <link rel="stylesheet" href="phorkie.css" />
  <title>Error - phorkie</title>
 </head>
 <body>
  <article>
   <h1>Error</h1>
   <p>
    {{exception.getMessage}}
   </p>
   {% if debug %}
   <pre>{{exception.getTraceAsString}}</pre>
   {% endif %}
  </article>
 </body>
</html>