-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.php
88 lines (68 loc) · 2.96 KB
/
template.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php include "access_check.php"; ?>
<!doctype html>
<html class="sidebar-light fixed sidebar-left-collapsed">
<head>
<!-- Basic -->
<meta charset="UTF-8">
<title>Bhimavaram Online Housie</title>
<meta name="keywords" content="Bhimavaram Online, Housie Game, Online Housie, Tambola" />
<meta name="description" content="Bhimavaram Online Housie Game">
<meta name="author" content="MCR Web Solutions, Bhimavaram">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700;800&display=swap" rel="stylesheet">
<!-- Vendor CSS -->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="vendor/animate/animate.css">
<link rel="stylesheet" href="vendor/font-awesome/css/fontawesome-all.min.css" />
<!-- Specific Page Vendor CSS --> <link rel="stylesheet" href="vendor/jquery-ui/jquery-ui.css" /> <link rel="stylesheet" href="vendor/jquery-ui/jquery-ui.theme.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="css/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="css/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/housie.css">
<!-- Head Libs -->
<script src="vendor/modernizr/modernizr.js"></script>
</head>
<body>
<section class="body">
<?php include "header.php"; ?>
<div class="inner-wrapper">
<?php include "sidebar.php"; ?>
<section role="main" class="content-body">
<header class="page-header">
<h2>BO HOUSIE</h2>
</header>
<!-- start: page -->
<!-- end: page -->
</section>
</div>
</section>
<!-- Vendor -->
<script src="vendor/jquery/jquery.js"></script> <script src="vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script> <script src="vendor/popper/umd/popper.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.js"></script> <script src="vendor/common/common.js"></script> <script src="vendor/nanoscroller/nanoscroller.js"></script> <script src="vendor/magnific-popup/jquery.magnific-popup.js"></script> <script src="vendor/jquery-placeholder/jquery-placeholder.js"></script>
<!-- Specific Page Vendor --> <script src="vendor/jquery-ui/jquery-ui.js"></script> <script src="vendor/jqueryui-touch-punch/jqueryui-touch-punch.js"></script> <script src="vendor/jquery-appear/jquery-appear.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="js/theme.js"></script>
<!-- Theme Custom -->
<script src="js/custom.js"></script>
<script src="js/housie.js"></script>
<!-- Theme Initialization Files -->
<script src="js/theme.init.js"></script>
<?php include "footer.php"; ?>
</body>
</html>