-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.php
33 lines (28 loc) · 987 Bytes
/
base.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
<?php require_once($_SERVER['DOCUMENT_ROOT']."/includes/kernel.php"); ?>
<!doctype html>
<html lang="en">
<head>
<?php include($_SERVER['DOCUMENT_ROOT']."/includes/head.php"); ?>
<title>Members</title>
</head>
<body>
<div class="wrapper">
<?php include($_SERVER['DOCUMENT_ROOT']."/includes/header.php"); ?>
<?php include($_SERVER['DOCUMENT_ROOT']."/includes/navigation.php"); ?>
<div class="page-wrapper">
<div class="page-body">
<div class="container-xl">
<div class="row row-cards">
<div class="col-12">
</div>
</div>
</div>
</div>
<?php include($_SERVER['DOCUMENT_ROOT']."/includes/footer.php"); ?>
</div>
</div>
<script src="./dist/js/tabler.min.js"></script>
<script src="./dist/js/demo.min.js"></script>
</body>
</html>
<?php include($_SERVER['DOCUMENT_ROOT']."/includes/db_disconnect.php"); ?>