Skip to content
Snippets Groups Projects
error_404.php 923 B
Newer Older
    <meta charset="utf-8">
    <title>404 Page Not Found</title>
    <link rel="stylesheet" href="/assets/index.css"/>
<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>
        <p class="mb-6 text-lg text-gray-600 md:text-xl lg:text-2xl">
            <?php if (!empty($message) && $message !== '(null)'): ?>
                <?= esc($message) ?>
            <?php else: ?>
                Sorry! Cannot seem to find the page you were looking for.
            <?php endif; ?>
        </p>

        <?= button('Go back', previous_url(), [
            'variant' => 'primary',
            'iconLeft' => 'arrow-left',
        ]) ?>