aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/error.html
blob: 64f54cd287be2d44f956eaa234d19bda0c13a419 (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="{$base_path}/">clicking here</a>?</p>
</div>
{include="page.footer"}
</body>
</html>