-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
79 lines (62 loc) · 1.92 KB
/
index.php
File metadata and controls
79 lines (62 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<TITLE>Action Dental | <?php echo $title; ?> | Cheyenne Wyoming Dentist</TITLE>
<?php include 'Modules/head.php'; ?>
</head>
<body>
<div class="container">
<div class="row panel-footer">
<?php
include 'Modules/header.php';
?></div>
<div class="row">
<?php
include 'Modules/nav.php';
?>
</div>
<div class="row background">
<?php
include 'Modules/sidebar.php';
?>
<main class="background col-sm-8 spacetop">
<?php
$navbar = $_GET['action'];
switch ($navbar) {
case 'Forms':
include 'forms.php';
$title = 'Forms';
break;
case 'Hours and Directions':
include 'hours.php';
$title = 'Hours and Directions';
break;
case 'Meet the Staff':
include 'meetstaff.php';
$title = 'Meet the Staff';
break;
case 'Payment/Insurance':
include 'payment.php';
$title = 'Payment/Insurance';
break;
case 'Services':
include 'services.php';
$title = 'Services';
break;
default :
include 'home.php';
$title = 'Home';
break;
}
?>
</main>
</div>
<div class="row">
<div class="col-sm-12">
<?php include 'Modules/footer.php';?>
</div>
</div>
<?php include 'Modules/script.php' ?>
</div>
</body>
</html>