sdwebserver/app/Views/404.php

15 lines
395 B
PHP
Raw Normal View History

2024-04-07 22:41:34 +02:00
<?= get_header('404: Page not found') ?>
<div class="container">
<h1>404 - Page Not Found</h1>
<img id="img_404" src="<?= base_url('img/404.svg') ?>" />
<p id="text_404">
2024-07-25 15:05:34 +02:00
<?php if (!empty($message) && $message !== '(null)') : ?>
2024-04-07 22:41:34 +02:00
<?= nl2br(esc($message)) ?>
<?php else : ?>
Sorry! Cannot seem to find the page you were looking for.
<?php endif ?>
</p>
</div>
<?= get_footer() ?>