-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescription.html
More file actions
132 lines (93 loc) · 4.26 KB
/
Copy pathdescription.html
File metadata and controls
132 lines (93 loc) · 4.26 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
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
128
129
130
131
132
<main>
<div class="row" style="margin-top: 5rem">
</div>
<section id="gallery" ng-controller="descriptionController">
<h2 class="mb-5 font-weight-bold text-center text-info">PACKAGE <span style="color:white">DETAILS</span></h2>
<div class="container " ng-repeat="data in details">
<!--Grid row-->
<div class="row border-info shadow rounded" style="border-width:medium;">
<!--Grid column-->
<div class="col-md-6 mb-4 mt-5">
<!--Carousel Wrapper-->
<div id="carousel-example-1z" class="carousel slide carousel-fade" data-ride="carousel">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<!--First slide-->
<div class="carousel-item active carousel-fade">
<img class="d-block w-100 " src={{data.slides[0]}} alt="First slide">
</div>
<!--/First slide-->
<!--Second slide-->
<div class="carousel-item carousel-fade" ng-repeat="img in data.slides">
<img class="d-block w-100 " src={{img}} alt="Second slide">
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<button class="carousel-control-prev btn btn-link" href="#carousel-example-1z" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</button>
<button class="carousel-control-next btn btn-link " href="#carousel-example-1z" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</button>
<!--/.Controls-->
</div>
<!--/.Carousel Wrapper-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-6 mt-2 mb-3 bg-white">
<h4 class="mb-3 font-weight-bold text-info" style="text-transform: uppercase"><strong>{{data.name}} package</strong></h4>
<p>{{data.description}}</p>
<p><b>Visiting places :</b>{{data.name}} </p>
<p><b>Duration : </b> {{data.duration}} Days</p>
<p><b>Start date : </b>{{data.depaturedate}}   <b>End date :</b>{{data.enddate}}</p>
<p><b>Depature address : </b>{{data.depatureaddress}}</p>
<p><b><strong>Total cost :  </strong></b><strong>Rs</strong> {{data.cost}} per person </p>
<a class="btn btn-info btn-lg w-15" href="#!booking{{data._id}}">BOOK</a>
<!-- <a class="btn btn-info btn-lg w-15" href="#!booking{{data._id}}"> View Weather </a> -->
</div>
<!--Grid column-->
</div>
<!--Grid row-->
<!--grid row-->
<hr>
<div class="row ">
<div class="col">
<h3 class="text-center font-weight-bold text-white" >Package Itinerary</h3>
</div>
</div>
<div class="row">
<div class="col ">
<ul>
<li class="text-white" ng-repeat="d in data.itinerary">{{data.itinerary[0]}}  </li>
</ul>
</div>
</div>
<hr>
<div class="row ">
<div class="col">
<h3 class="text-center font-weight-bold text-white">Inclusion</h3>
</div>
</div>
<div class="row align-items-center text-white">
<div class="col">
<ul>
<li>Accommodation in selected category hotel (NA for Day Trips)</li>
<li>Breakfast, except on Check-in Date (NA for Day Trips & Govt Properties)</li>
<li>Sightseeing as per Itinerary by Private Cab</li>
<li>Parking & Toll Charges</li>
<li>Driver Allowance</li>
<li>Inter-state Entry Tax, if applicable</li>
<li>Pickup & Drop from Your Origin City (Optional)</li>
<li>Total fare includes GST</li>
</ul>
</div>
</div>
<div class="row" style="margin-bottom: 5rem">
</div>
</div>
</section>
</main>