aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/error.html
blob: c3e0c3c1db3f914475fbf0d59fa6a3e349f684c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
<head>
  {include="includes"}
</head>
<body>
<div id="pageheader">
  {include="page.header"}
<div id="pageError" class="page-error-container center">
  <h2>{$message}</h2>

  {if="!empty($stacktrace)"}
      <pre>
        {$stacktrace}
      </pre>
  {/if}

  <img src="{$asset_path}/img/sad_star.png#" alt="">
</div>
{include="page.footer"}
</body>
</html>