aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/error.html
blob: b6e62be09e9ff6f404c388c82c8c15e08413b496 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
    {include="includes"}
</head>
<body>
<div id="pageheader">
    {include="page.header"}
</div>
<div class="error-container">
    <h1>Error</h1>
    <p>{$message}</p>

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

    <p>Would you mind <a href="?">clicking here</a>?</p>
</div>
{include="page.footer"}
</body>
</html>