-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
51 lines (44 loc) · 1.23 KB
/
home.php
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
<?php
require 'auth.php';
$role_id = $_SESSION['SESS_CATEGORY_'];
?>
<!DOCTYPE html>
<html>
<head>
<?php include 'header.php'; ?>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<header class="main-header">
<?php include 'top_nav.php'; ?>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<?php include 'left_nav.php'; ?>
<!-- /.sidebar -->
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<?php include 'dashboard.php'; ?>
<!-- Main content -->
</div>
<!-- /.content-wrapper -->
<footer class="main-footer">
<?php include 'footer.php'; ?>
</footer>
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<?php include 'asidemenu.php'; ?>
</aside>
<!-- /.control-sidebar -->
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div>
<!-- ./wrapper -->
<!-- jQuery 3 -->
<?php include 'jquery.php'; ?>
</body>
</html>