-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.php
72 lines (49 loc) · 2.13 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
<!doctype html>
<!--[if (gt IE 9)|!(IE)]><!-->
<html class="no-js">
<!--<![endif]-->
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!-- /Added by HTTrack -->
<meta http-equiv="refresh" content="10">
<!-- Custom CSS -->
<link href="sidebar.css" rel="stylesheet">
<head>
<!-- Basic page needs ================================================== -->
<meta charset="utf-8">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<!-- Title and description ================================================== -->
<title>
Drug Consult Pharmacy
</title>
<?php require_once __DIR__ . '/includes/sidebar_cart.inc.php'; ?>
<?php require_once __DIR__ . '/includes/header.inc.php'; ?>
<!-- Navigation Menu Starts -->
<?php require_once __DIR__ .'/includes/nav.inc.php'; ?>
<!-- End of Navigation Menu -->
<main class="main-content">
<div class="container">
<div class="row">
<nav class="breadcrumb" aria-label="breadcrumbs">
<a href="index.php" title="Back to the frontpage">Home</a>
<span aria-hidden="true" class="breadcrumb__sep">|</span>
<span>Template</span>
</nav>
<?php require_once __DIR__ .'/includes/leftsidebar.inc.php'; ?>
<!-- Begincontent_for_pages -->
<div class="col-md-9 col-sm-8 col-xs-12 rightw">
<div class="contback">
...Place content here
<div class="text-center">
<button type="button" class="btn btn-demo" data-toggle="modal" data-target="#myModal2">
Right Sidebar Modal
</button>
</div>
</div>
</div>
<!-- END content_for_pages -->
</div>
</div>
</main>
<?php require_once __DIR__ . '/includes/footer.inc.php' ?>
</body>
</html>