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