19 lines
498 B
HTML
19 lines
498 B
HTML
<!DOCTYPE html>
|
|
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
|
|
<head>
|
|
{$pageName="404"}
|
|
{include="includes"}
|
|
</head>
|
|
<body>
|
|
{include="page.header"}
|
|
<div class="container">
|
|
<div class="text-center">
|
|
<img src="{$asset_path}/dist/img/sad_star.png#" alt="Nothing found">
|
|
</div>
|
|
<div class="nothing-found">{'Sorry, nothing to see here.'|t} That's a <strong>404</strong>.</div>
|
|
<p class="text-center">{$error_message}</p>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|