-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore_cardcontent.php
More file actions
168 lines (142 loc) · 6.23 KB
/
explore_cardcontent.php
File metadata and controls
168 lines (142 loc) · 6.23 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<?php include 'header.php'; ?>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Let's Explore</title>
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet" />
<!-- Stylesheet -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/explore_cardcontent.css" />
<script src="https://kit.fontawesome.com/e173e574d6.js" crossorigin="anonymous"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" href="image/LOGO (2).png" type="image/png">
</head>
<body>
<section class="iframe-container">
<div class="background-image" style="background-position: center;"></div>
<div id="imageModal" class="modal">
<span class="close" onclick="closeImageModal()">×</span>
<img id="modalImage" class="modal-content">
</div>
<h3></h3>
<div class="ratings" id="total-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<div id="number-of-visits">
<!-- Number of visits will be displayed here -->
</div>
<button id="add-to-favorites" class="add-to-favorites">
<i class="fas fa-heart"></i> Add to Favorites
</button>
</section>
<section class="image-gallery">
<div class="container">
<div class="row gallery" id="dynamic-gallery">
<!-- Images will be generated here -->
</div>
</div>
</section>
<div class="modal" id="contactModal">
<div class="modal-content">
<span class="close-modal">×</span>
<h2>Contact Information</h2>
<p id="contactInfo"></p>
<button id="copyContactButton">
<i class="fas fa-copy"></i> Copy
</button>
</div>
</div>
<div class="modal" id="LinksModal">
<div class="modal-content">
<span class="close-modal1">×</span>
<h2>Social Links</h2>
<p id="linksInfo"></p>
</div>
</div>
<div class="modal" id="addressModal">
<div class="modal-content">
<span class="close-modal2">×</span>
<h2>Address Information</h2>
<p id="addressInfo"></p>
<button id="copyAddressButton">
<i class="fas fa-copy"></i> Copy
</button>
</div>
</div>
<section>
<br><br>
<p class="dynamic-paragraph" id="paragraph"></p>
</section>
<div class="filter-nav">
<button class="active" data-rating="all">All</button>
<button data-rating="5">5 Stars</button>
<button data-rating="4">4 Stars</button>
<button data-rating="3">3 Stars</button>
<button data-rating="2">2 Stars</button>
<button data-rating="1">1 Star</button>
</div>
<div class="row">
<!-- Comments Section Column -->
<div class="col-md-6">
<section class="comments-section">
<div class="comment-cards-container" id="commentCardsContainer">
<!-- Your comment cards go here -->
</div>
</section>
</div>
<div class="col-md-6 place-details">
<div class="contact-card">
<!-- Contact Details -->
<div class="contact-details">
<!-- dynamic details -->
</div>
<!-- Address -->
<div class="address">
<!-- dynamic details -->
</div>
<!-- Social Links as buttons -->
<div class="social-links">
<h5>Social Links</h5>
<button id="facebookIcon" class="social-button"><i class="fab fa-facebook"></i> Facebook</button>
<button id="websiteIcon" class="social-button"><i class="fas fa-globe"></i> Website</button>
</div>
</div>
<div class="row">
<div class="col-md-6 map-placement">
<div class="map-container" id="mapContainer">
<div class="map-header">
<h2>Explore the Batangas</h2>
</div>
<div id="map"></div>
</div>
</div>
<div id="nearbyPlacesContainer" class="col-md-6 list-nearby-places">
<div class="list-card overflow-auto">
<h5>Nearby Places</h5>
<ul id="ul-nearby-places" class="ul-nearby-places">
<!-- List items will be appended here dynamically -->
</ul>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>
<script src="js/explore_cardcontent.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.5/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
</body>
</html>