-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (75 loc) · 3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="dist/bundle.js"></script>
<script src="src/navbar.js"></script>
<title>IICM 2023</title>
</head>
<body>
<div class="page-wrapper">
<section class="hero" id="home">
<div class="hero-container">
<div class="navbar-underlay"></div>
<div class="navbar">
<ul class="navbar-links">
<li><a href="#home">HOME</a></li>
<li><a href="#schedule">SCHEDULE</a></li>
<li><a href="#gallery">GALLERY</a></li>
<li><a href="#leaderboard">LEADERBOARD</a></li>
</ul>
</div>
<img class="logo" src="./assets/elements/text-logo.svg">
</section>
<!-- <hr> -->
<section class="timeline" id="schedule">
<div id="timeline-container" class="timeline-container">
<div class="timeline-overlay"></div>
<div class="timeline-details">
EVENTS!
</div>
<div class="timeline-content">
<ul>
<!-- Timeline events will be dynamically populated here -->
</ul>
</div>
</div>
</section>
<!-- <hr> -->
<section class="gallery" id="gallery">
<div class="title">
<h1 class="title">GALLERY</h1>
</div>
<div class="gallery-container">
<div id="track" data-mouse-down-at="0" data-prev-percentage="0">
<img class="image" src="assets/gallery/1.png" alt="" draggable="false">
<img class="image" src="assets/gallery/2.png" alt="" draggable="false">
<img class="image" src="assets/gallery/3.png" alt="" draggable="false">
<img class="image" src="assets/gallery/4.png" alt="" draggable="false">
<img class="image" src="assets/gallery/5.png" alt="" draggable="false">
</div>
</div>
</section>
<!-- <hr> -->
<section class="leaderboard" id="leaderboard">
<div>
<h1 class="leaderboard-title">LEADERBOARD</h1>
</div>
<select name="event-dropdown" id="event-dropdown">
<!-- Event options will be dynamically generated here -->
</select>
<div class="podium">
<!-- Podium elements will be dynamically generated here -->
</div>
<div class="others">
<div class="teams">
<!-- Other team elements will be dynamically generated here -->
</div>
</div>
</section>
</div>
</body>
<script src="src/gallery.js"></script>
</html>