-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·57 lines (46 loc) · 917 Bytes
/
index.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
<?
$pageTitle = "TAP into CMA";
$page = "home";
$fromHome = 1;
include("_inc/db_connect.php");
$curDate = date("Y-m-d");
$showTours = $_GET['tours'];
$tour = $_GET['tour'];
include("_inc/content/tour-list.php");
?>
<!DOCTYPE html>
<html>
<head>
<?
$pageCSS='
';
$pageJS = '
';
include("_inc/common-header.php");
?>
</head>
<body ontouchstart="">
<div class="loading"></div>
<div id="home">
<?
if(!$archive){$slimMenu = 1;} include("_inc/header.php");
// Message for no current tours.
echo $noTours;
?>
<nav>
<ul id="home-nav" class="stop-list">
<?=$showArchiveLink.$stopList; ?>
</ul>
</nav>
<?
if(!$archive){
include "_inc/stopSearch.php";
}
?>
<?
$feedback=1;
include_once '_inc/footer.php';
?>
</div>
</body>
</html>