-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
89 lines (49 loc) · 1.92 KB
/
index.php
File metadata and controls
89 lines (49 loc) · 1.92 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
include_once("back-end/init.php");
?>
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="sm-hover"
data-sidebar-image="none" data-preloader="enable">
<?php include_once(DATA . "head.php"); ?>
<!-- Mirrored from themesbrand.com/velzon/html/modern/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 19 Feb 2023 22:16:09 GMT -->
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include_once(DATA . "header.php"); ?>
<?php include_once(DATA . "modal-notification.php"); ?>
<!-- ========== App Menu ========== -->
<?php include_once(DATA . "menu.php"); ?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<?php
if ($_GET && !empty($_GET["page"])) {
$page = $_GET["page"] . ".php";
if (file_exists(PAGE . $page)) {
include_once(PAGE . $page);
} else {
include_once(PAGE . "main.php");
}
} else {
include_once(PAGE . "main.php");
}
?>
<?php include_once(DATA . "footer.php"); ?>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<?php include_once(DATA . "backtotop.php"); ?>
<!--end back-to-top-->
<!--preloader-->
<?php include_once(DATA . "backtotop.php"); ?>
<?php include_once(DATA . "theme-settings.php"); ?>
<!-- JAVASCRIPT -->
<?php include_once(DATA . "linkscripts.php"); ?>
</body>
</html>