-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
34 lines (22 loc) · 642 Bytes
/
404.php
File metadata and controls
34 lines (22 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
require_once 'core/init.php';
$head = Head::get(16);
$page_id=16;
$page = Pages::get(16);
?>
<!DOCTYPE html>
<html itemscope itemtype="https://schema.org/WebPage" lang="en">
<?php echo $head->renderHead(); ?>
<body>
<?php require_once BASE_PATH . '/inc/header.php'; ?>
<main>
<div class="wrapper">
<?php echo $page->renderPage(); ?>
<div id="main">
<p id="error"><b><i>"The requested URL was not found on this server."</i></b></p>
</div><!-- end #main -->
</div><!-- end .wrapper -->
</main>
<?php include_once './inc/footer.php'; //end #footer?>
</body>
</html>