tildechan/404.php

16 lines
273 B
PHP

<?php
$path = $_SERVER['DOCUMENT_ROOT'];
require_once($path . '/core/header.php');
require_once($path . '/core/footer.php');
display_header('404 - page not found');
?>
<div style="
width: 400px;
margin: auto;
">
<h1>404 - page not found</h1>
<?php
display_footer();
?>