MyShaarli/tpl/vintage/error.html

26 lines
425 B
HTML

<!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>