26 lines
705 B
PHP
26 lines
705 B
PHP
|
<?php
|
||
|
http_response_code(404);
|
||
|
|
||
|
require_once __DIR__ . '/../_v4/includes.php';
|
||
|
|
||
|
define('FWH_STYLE', FWH_2019);
|
||
|
|
||
|
echo html_open()
|
||
|
. '<head>'
|
||
|
. html_head('Error 404 - Not Found', HEAD_ERROR)
|
||
|
. '</head><body>'
|
||
|
. html_navigation(NAV_ERROR, [
|
||
|
'title1' => '404 ',
|
||
|
'title2' => 'not found',
|
||
|
])
|
||
|
. '<div class="wrapper">';
|
||
|
?>
|
||
|
<div class="description" style="text-align: center" style="padding: 0;">
|
||
|
<p class="description__paragraph" style="padding: 10px 5px;"><img src="//abyss.flash.moe/flash.moe/assets/link.png" alt="" style="vertical-align: middle; max-width: 100%;"></p>
|
||
|
</div>
|
||
|
<?php
|
||
|
echo '</div>'
|
||
|
. html_footer()
|
||
|
. '</body>'
|
||
|
. html_close();
|