-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathload.html
More file actions
88 lines (69 loc) · 4.07 KB
/
Copy pathload.html
File metadata and controls
88 lines (69 loc) · 4.07 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
<header>
<div class="row" style="margin-top: 2rem" id="banner">
</div>
</header>
<main>
<section ng-controller="pkgsctrl">
<div class="container mb-3">
<div class="row justify-content-center text-center">
<div class="col-md-6 bg-info py-4 " style="margin-top: -2rem;">
<input type="text" name="" placeholder="Enter package type" style="width:60%" ng-model="searchbox">
<button class="btn btn-dark text-white" ng-click="searching()" >Search</button>
</div>
</div>
<div class="row mt-5 d-flex justify-content-center text-center">
<div class="col-md-6">
<h1 class="mb-5 font-weight-bold text-info" >OUR <span style="color: rgb(237, 238, 237)">PACKAGES</span></h1>
</div>
</div>
</div>
<div class="container text-center" >
<div class="row mt-5 d-flex justify-content-center text-center" ng-show="noResults">
<div class="col-md-6">
<h1 class="mb-5 font-weight-bold " >No Results</h1>
</div>
</div>
<div class="row align-items-center " ng-repeat="data in packages" ng-if="$index % 3 == 0">
<div class="col-lg-4 col-md-4 mb-5">
<div class="card " style=" border: 2px solid rgb(22, 235, 247);">
<img class="card-img-top" src={{packages[$index].icon}} alt="Card image cap">
<div class="card-body">
<h4 class="card-title font-weight-bold" style="text-transform: uppercase">{{packages[$index].name}}</h4>
<p class="card-text"><b>Duration: </b>{{packages[$index].duration}} days</p>
<p class="card-text"><strong>Rs {{packages[$index].cost}}</strong> per person</p>
<div class="card-body">
<a href="#!description{{packages[$index]._id}}" class="btn text-white" style="background-color: #37eaed">MORE DETAILS</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 mb-5">
<div class="card" style=" border: 2px solid rgb(22, 235, 247);">
<img class="card-img-top" src={{packages[$index+1].icon}} alt="Card image cap">
<div class="card-body">
<h4 class="card-title font-weight-bold" style="text-transform: uppercase">{{packages[$index + 1].name}}</h4>
<p class="card-text"><b>Duration:</b>{{packages[$index + 1].duration}} days</p>
<p class="card-text"><strong>Rs {{packages[$index + 1].cost}}</strong> per person</p>
<div class="card-body">
<a href="#!description{{packages[$index + 1]._id}}" class="btn text-white" style="background-color: #37eaed">MORE DETAILS</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 mb-5">
<div class="card" style=" border: 2px solid rgb(22, 235, 247);">
<img class="card-img-top" src={{packages[$index+2].icon}} alt="Card image cap">
<div class="card-body">
<h4 class="card-title font-weight-bold" style="text-transform: uppercase">{{packages[$index + 2].name}}</h4>
<p class="card-text"><b>Duration:</b>{{packages[$index + 2].duration}} days</p>
<p class="card-text"><strong>Rs {{packages[$index + 2 ].cost}}</strong> per person</p>
<div class="card-body">
<a href="#!description{{packages[$index + 2]._id}}" class="btn text-white" style="background-color:#37eaed ">MORE DETAILS</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>