5 lines
220 B
PHP
5 lines
220 B
PHP
<?=view('templates/header', ['title' => 'Page not found'])?>
|
|
<h1>Page not found</h1>
|
|
<p>Sorry the page you requested could not be found on this server</p>
|
|
<a href="<?=url('/')?>">Go home</a>
|
|
<?=view('templates/footer')?>
|