26 lines
657 B
PHP
26 lines
657 B
PHP
<?php include __DIR__ . "/inc/head.inc.php"; ?>
|
|
<div class="is-loading">
|
|
|
|
<!-- Wrapper -->
|
|
<div id="wrapper">
|
|
|
|
<?php include __DIR__ . "/inc/header.inc.php"; ?>
|
|
|
|
<!-- Main -->
|
|
<div id="main">
|
|
|
|
<!-- Post -->
|
|
<section class="post">
|
|
<header class="major">
|
|
<h1>404 Page Not Found</h1>
|
|
<p>The requested page could not be found.</p>
|
|
</header>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<?php include __DIR__ . "/inc/footer.inc.php"; ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php include __DIR__ . "/inc/scripts.inc.php"; ?>
|