17 lines
520 B
PHP
17 lines
520 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php require $_SERVER['DOCUMENT_ROOT'] . "/includes/head.php"; ?>
|
|
<title>404 • Zepha Docs</title>
|
|
</head>
|
|
<body>
|
|
<?php require $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?>
|
|
<main id="404">
|
|
<div class="page-wrapper">
|
|
<h1 class="page-title" style="text-align: center; margin-top: 120px; margin-bottom: 0px; font-size: 48px;">404 </h1>
|
|
<h3 style="text-align: center; margin-top: 6px;">Page not found. </h3>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|