-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path403.php
More file actions
38 lines (24 loc) · 647 Bytes
/
403.php
File metadata and controls
38 lines (24 loc) · 647 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
35
36
37
38
<?php
require_once 'core/init.php';
$head = Head::get(15);
$page_id=15;
$page = Pages::get(15);
?>
<!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>"You don't have permission to access this resource."</i></b></p>
</div><!-- end #main -->
</div><!-- end .wrapper -->
</main>
<?php include_once './inc/footer.php';//end #footer?>
</body>
</html>