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">
|
2022-09-28 12:49:36 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
|
2023-07-06 15:56:05 +00:00
|
|
|
<title><?= lang('Errors.pageNotFound') ?></title>
|
2022-01-20 11:26:18 +00:00
|
|
|
<link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' />
|
2021-07-12 17:47:56 +00:00
|
|
|
<?= service('vite')->asset('styles/index.css', 'css') ?>
|
2020-06-05 13:54:40 +00:00
|
|
|
</head>
|
|
|
|
|
2021-12-07 13:46:08 +00:00
|
|
|
<body class="flex flex-col items-center justify-center min-h-screen px-2 text-center bg-base theme-<?= service('settings')
|
|
|
|
->get('App.theme') ?>">
|
2021-05-06 14:00:48 +00:00
|
|
|
<?= svg('castopod-mascot_confused', 'h-64') ?>
|
2023-07-06 15:56:05 +00:00
|
|
|
<h1 class="mt-4 text-3xl font-bold font-display md:text-4xl lg:text-5xl">404</h1>
|
2020-06-05 13:54:40 +00:00
|
|
|
|
2021-11-05 14:36:34 +00:00
|
|
|
<p class="mb-6 text-lg text-skin-muted md:text-xl lg:text-2xl">
|
2021-05-18 17:16:36 +00:00
|
|
|
<?php if (isset($message) && $message !== '(null)'): ?>
|
2021-05-06 14:00:48 +00:00
|
|
|
<?= esc($message) ?>
|
|
|
|
<?php else: ?>
|
2023-07-06 15:56:05 +00:00
|
|
|
<?= lang('Errors.sorryCannotFind') ?>
|
2021-05-06 14:00:48 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
</p>
|
2024-05-09 17:55:41 +00:00
|
|
|
<a href="<?= previous_url() ?>" class="inline-flex items-center justify-center px-3 py-1 text-sm font-semibold rounded-full shadow-xs text-accent-contrast md:px-4 md:py-2 md:text-base bg-accent-base hover:bg-accent-hover"><?= lang('Common.go_back') ?></a>
|
2020-06-05 13:54:40 +00:00
|
|
|
</body>
|
|
|
|
|
2021-05-06 14:00:48 +00:00
|
|
|
</html>
|