UNPKG

427 BHTMLView Raw
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Error - {{status}}</title>
5 </head>
6 <body>
7 <div id="error">
8 <h1>Error</h1>
9 <p>Looks like something broke!</p>
10 {% if env == 'development' %}
11 <h2>Message:</h2>
12 <pre>
13 <code>
14{{error}}
15 </code>
16 </pre>
17 <h2>Stack:</h2>
18 <pre>
19 <code>
20{{stack}}
21 </code>
22 </pre>
23 {% endif %}
24 </div>
25 </body>
26</html>