]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/default/error.html
Display error details even with dev.debug set to false
[github/shaarli/Shaarli.git] / tpl / default / error.html
CommitLineData
6c50a6cc
A
1<!DOCTYPE html>
2<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
3<head>
4 {include="includes"}
5</head>
6<body>
7<div id="pageheader">
8 {include="page.header"}
dd51f653 9<div id="pageError" class="page-error-container center">
6c50a6cc
A
10 <h2>{$message}</h2>
11
cfdd2094
A
12 <img src="{$asset_path}/img/sad_star.png#" alt="">
13
14 {if="!empty($text)"}
15 <p>{$text}</p>
16 {/if}
17
6c50a6cc
A
18 {if="!empty($stacktrace)"}
19 <pre>
20 {$stacktrace}
21 </pre>
22 {/if}
6c50a6cc
A
23</div>
24{include="page.footer"}
25</body>
26</html>