willy.club/views/errors/404.php

5 lines
214 B
PHP
Raw Normal View History

2023-01-20 19:33:45 +00:00
<?=view('templates/header', ['title' => 'Page not found'])?>
2023-01-07 17:49:47 +00:00
<h1>Page not found</h1>
<p>The page you requested could not be found on this server</p>
2023-01-20 19:33:45 +00:00
<a href="<?=url('/')?>">Go home</a>
<?=view('templates/footer')?>