-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.php
127 lines (81 loc) · 2.88 KB
/
travel.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang = "en-gb" dir = "ltr">
<head>
<title>Travel & Accommodation</title>
<base href="/mes/" />
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name = "viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href = "style.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="javascript/jquery-1.10.2.js"></script>
</head>
<body>
<!------------ACTIVE TAB STYLE-------------------->
<style>
#travel-active {
color: black !important;
background-color: white !important;
}
</style>
<!------------------------------------heading----------------------------------------->
<div id="heading-placeholder">
<?php
$include_path = "/var/www/html/mes";
$use_page="TRUE";
include("$include_path/components/heading.php");
?>
</div>
<!---------------------------------end of heading------------------------------------->
<!---------------------------------Navigation bar------------------------------------->
<div id="nav-placeholder">
<?php
include("$include_path/components/navigation-bar.php");
?>
</div>
<!-----------------------------end of Navigation bar----------------------------------->
<div class="container">
<div class="row">
<!--------------------------------page main content------------------------------->
<div class="col-md-8">
<h4><strong><span style="font-size:17pt;text-align:justify;color:#008080;">Coming Soon<br /></strong></span></h4>
</div>
<!------------------------end of page main content------------------------------->
<!------------------------------------sidebar------------------------------------>
<div class="col-md-4">
<div class="row">
<div id="sidebar-dates-placeholder">
<?php
include("$include_path/components/sidebar-dates.php");
?>
</div>
</div>
<div class="row">
<?php
include("$include_path/components/poster.php");
?>
</div>
<div class="row">
<div id="sidebar-photos-placeholder">
<?php
include("$include_path/components/sidebar-photos.php");
?>
</div>
</div>
</div>
<!---------------------------------end ofsidebar-------------------------------->
</div>
</div>
<!-----------------footer---------------------------->
<div id="footer-placeholder">
<?php
include("$include_path/components/footer.php");
?>
</div>
<!------------end of footer--------------------------->
</body>
</html>