summaryrefslogtreecommitdiff
path: root/data/templates/exception.htm
blob: f4f5d324226856add893a13c37adac2e7da822a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
  <base href="{{baseurl}}" />
  <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>