-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
41 lines (41 loc) · 1.41 KB
/
schedule.html
File metadata and controls
41 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/css/schedule.css" />
<script src="/js/templater.js"></script>
<!-- hide the page by default with this inline style so that JS can reveal it later -->
<style>
body {
background-color: #131313;
}
body *:not(#loading-overlay) {
opacity: 0;
}
body.loaded *:not(#loading-overlay) {
opacity: unset;
}
</style>
</head>
<body>
<div id="page-content">
<section class="schedule-section">
<div class="container">
<h2>Event Schedule</h2>
<h3>December 13-14th</h3>
<div class="schedule-tabs">
<button class="tab-btn active" data-day="friday">
Friday
</button>
<button class="tab-btn" data-day="saturday">
Saturday
</button>
</div>
<div class="schedule-content" id="scheduleContent">
<!-- Schedule content will be populated by JavaScript -->
</div>
</div>
</section>
<script src="/js/schedule.js"></script>
</div>
</body>
</html>