2020-10-13 18:19:54 +00:00
|
|
|
<?= helper(['components', 'svg']) ?>
|
2020-06-05 13:54:40 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2020-08-04 11:25:22 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>404 Page Not Found</title>
|
2020-10-13 18:19:54 +00:00
|
|
|
<link rel="stylesheet" href="/assets/index.css"/>
|
2020-06-05 13:54:40 +00:00
|
|
|
</head>
|
|
|
|
|
2020-10-13 18:19:54 +00:00
|
|
|
<body class="flex flex-col items-center justify-center min-h-screen px-2 text-center bg-gray-100">
|
|
|
|
<?= svg('castopod-mascot_confused', 'h-64') ?>
|
|
|
|
<h1 class="text-3xl font-bold md:text-4xl lg:text-5xl">404 - File Not Found</h1>
|
2020-06-05 13:54:40 +00:00
|
|
|
|
2020-10-13 18:19:54 +00:00
|
|
|
<p class="mb-6 text-lg text-gray-600 md:text-xl lg:text-2xl">
|
2020-08-04 11:25:22 +00:00
|
|
|
<?php if (!empty($message) && $message !== '(null)'): ?>
|
|
|
|
<?= esc($message) ?>
|
|
|
|
<?php else: ?>
|
|
|
|
Sorry! Cannot seem to find the page you were looking for.
|
|
|
|
<?php endif; ?>
|
|
|
|
</p>
|
2020-10-13 18:19:54 +00:00
|
|
|
|
|
|
|
<?= button('Go back', previous_url(), [
|
|
|
|
'variant' => 'primary',
|
|
|
|
'iconLeft' => 'arrow-left',
|
|
|
|
]) ?>
|
2020-06-05 13:54:40 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|