30 lines
698 B
PHP
30 lines
698 B
PHP
|
<?php
|
||
|
http_response_code(404);
|
||
|
|
||
|
require_once __DIR__ . '/../_v4/includes.php';
|
||
|
|
||
|
define('FWH_STYLE', FWH_2020);
|
||
|
|
||
|
echo html_doctype();
|
||
|
?>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<?=html_charset();?>
|
||
|
<title>404 Not Found</title>
|
||
|
<?=html_stylesheet('2020.css');?>
|
||
|
<?=html_meta();?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
|
<?=html_sidebar();?>
|
||
|
<div class="notfound">
|
||
|
<h1>404 - Page not found!</h1>
|
||
|
<p>You either went to an invalid URL or this content has been deleted.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php if(html_old_ie()) { ?>
|
||
|
<?=html_script('/assets/fixpng.js');?>
|
||
|
<?php } ?>
|
||
|
</body>
|
||
|
</html>
|