-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
210 lines (183 loc) · 8.22 KB
/
index.html
File metadata and controls
210 lines (183 loc) · 8.22 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="EventPulse - Discover and track amazing events near you">
<title>EventPulse - Discover Events</title>
<!-- CSS Files -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/pages.css">
</head>
<body>
<!-- Page Wrapper -->
<div class="page-wrapper">
<!-- ================================================================
HEADER
================================================================ -->
<header class="site-header">
<div class="container header-container">
<!-- Logo -->
<a href="index.html" class="header-logo">
<!-- Logo Icon (SVG placeholder) -->
<svg class="header-logo-icon" width="32" height="32" viewBox="0 0 32 32" fill="currentColor" aria-hidden="true">
<circle cx="16" cy="16" r="14" fill="currentColor" opacity="0.2"/>
<circle cx="16" cy="16" r="8" fill="currentColor"/>
</svg>
<span>EventPulse</span>
</a>
<!-- Navigation (Desktop) -->
<nav class="header-nav" aria-label="Main navigation">
<a href="index.html" class="header-nav-link">Discover</a>
<a href="#" class="header-nav-link">My Events</a>
<a href="#" class="header-nav-link">Create Event</a>
</nav>
<!-- Header Actions -->
<div class="header-actions">
<button type="button" class="btn btn-outline btn-sm">Log In</button>
<button type="button" class="btn btn-primary btn-sm">Sign Up</button>
</div>
</div>
</header>
<!-- ================================================================
MAIN CONTENT
================================================================ -->
<main class="page-content">
<div class="container main-layout">
<!-- ============================================================
SIDEBAR - Filters
============================================================ -->
<aside class="sidebar" aria-label="Event filters">
<!-- Category Filter -->
<section class="sidebar-section">
<h3 class="sidebar-title">Categories</h3>
<div class="checkbox-group">
<label class="checkbox-label">
<input type="checkbox" name="category" value="music">
Music & Concerts
</label>
<label class="checkbox-label">
<input type="checkbox" name="category" value="tech">
Tech & Innovation
</label>
<label class="checkbox-label">
<input type="checkbox" name="category" value="food">
Food & Drink
</label>
<label class="checkbox-label">
<input type="checkbox" name="category" value="sports">
Sports & Fitness
</label>
<label class="checkbox-label">
<input type="checkbox" name="category" value="arts">
Arts & Culture
</label>
<label class="checkbox-label">
<input type="checkbox" name="category" value="business">
Business & Networking
</label>
</div>
</section>
<!-- Date Filter -->
<section class="sidebar-section">
<h3 class="sidebar-title">Date</h3>
<div class="form-group">
<label class="form-label" for="date-from">From</label>
<input type="date" id="date-from" class="form-input">
</div>
<div class="form-group">
<label class="form-label" for="date-to">To</label>
<input type="date" id="date-to" class="form-input">
</div>
</section>
<!-- Location Filter -->
<section class="sidebar-section">
<h3 class="sidebar-title">Location</h3>
<div class="form-group">
<select id="location" class="form-select">
<option value="">All Locations</option>
<option value="new-york">New York, NY</option>
<option value="los-angeles">Los Angeles, CA</option>
<option value="chicago">Chicago, IL</option>
<option value="houston">Houston, TX</option>
<option value="miami">Miami, FL</option>
<option value="seattle">Seattle, WA</option>
</select>
</div>
</section>
<!-- Apply Filters Button -->
<button type="button" class="btn btn-primary sidebar-btn">
Apply Filters
</button>
</aside>
<!-- ============================================================
MAIN CONTENT - Events Grid
============================================================ -->
<section class="main-content" aria-label="Events listing">
<!-- Section Header -->
<header class="section-header">
<div>
<h1 class="section-title">Discover Events</h1>
<p class="section-subtitle">Find amazing events happening near you</p>
</div>
</header>
<!-- Events Count -->
<p class="events-count">Showing 8 events</p>
<!-- ============================================================
EMPTY STATE (Hidden by default - shown when no events)
Uncomment this section and hide .events-grid to display
============================================================ -->
<div class="empty-state">
<svg class="empty-state-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line>
<line x1="9" y1="16" x2="15" y2="16"></line>
</svg>
<h3 class="empty-state-title">No Events Found</h3>
<p class="empty-state-description">
We couldn't find any events matching your filters.
Try adjusting your search criteria or check back later for new events.
</p>
<button type="button" class="btn btn-primary">Clear Filters</button>
</div>
<!-- Events Grid -->
<div class="events-grid"></div>
</section>
</div>
</main>
<!-- ================================================================
FOOTER
================================================================ -->
<footer class="site-footer">
<div class="container footer-container">
<!-- Footer Logo & Copyright -->
<div class="footer-brand">
<span class="footer-logo">
<svg width="24" height="24" viewBox="0 0 32 32" fill="currentColor" aria-hidden="true">
<circle cx="16" cy="16" r="14" fill="currentColor" opacity="0.2"/>
<circle cx="16" cy="16" r="8" fill="currentColor"/>
</svg>
<span>EventPulse</span>
</span>
<p class="footer-copyright">© 2025 EventPulse. All rights reserved.</p>
</div>
<!-- Footer Navigation -->
<nav class="footer-nav" aria-label="Footer navigation">
<a href="#" class="header-nav-link">About</a>
<a href="#" class="header-nav-link">Privacy</a>
<a href="#" class="header-nav-link">Terms</a>
<a href="#" class="header-nav-link">Contact</a>
</nav>
</div>
</footer>
</div>
<script src="js/data.js"></script>
<script src="js/render.js"></script>
<script src="js/storage.js"></script>
<script src="js/events.js"></script>
</body>
</html>