26 lines
870 B
HTML
26 lines
870 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="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<div class="card" style="text-align: center; padding: 2rem;">
|
|
<div style="font-size: 4rem; color: var(--text-muted); margin-bottom: 1rem;">404</div>
|
|
<h2 style="margin-bottom: 1rem; color: var(--text-main);">{'Sorry, nothing to see here.'|t}</h2>
|
|
{if="!empty($error_message)"}
|
|
<p class="text-muted">{$error_message}</p>
|
|
{/if}
|
|
<a href="{$base_path}/" class="btn btn-primary" style="margin-top: 1rem;">{'Home'|t}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|