-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathleaderboard.html
171 lines (166 loc) · 5.67 KB
/
leaderboard.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
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
<!DOCTYPE html>
<html>
<head>
<title>Leaderboard</title>
<meta charset="UTF-8" />
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap"
rel="stylesheet"
/>
<!-- Favicon -->
<link rel="icon" href="public/img/favicon.png" />
<link rel="stylesheet" href="public/css/leaderboard.css" />
</head>
<body>
<haeder>
<div class="container">
<nav
class="navbar navbar-expand-lg navbar-light fixed-top px-3"
id="navbar"
>
<!-- For the Cursor -->
<div class="cursors" id="cursordiv">
<span class="cursor cursor--darkl"></span>
<span class="cursor cursor--darks"></span>
</div>
<a class="navbar-brand" id="brand"
><img id="myImg" src="public/img/Nav-logo.png" alt="" />
<span class="d-none d-sm-inline">GEEKTOBERFEST'20</span></a
>
<button
class="navbar-toggler nav-toggle-btn"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="links collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link hvr-grow-shadow" href="./index.html#sectionLink1"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#section2">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#section3">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#section4">Participants</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#section6">Mentors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./leaderboard.html" target="_self"
>Leaderboard</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#section5">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</haeder>
<div id="leaderboard-container" class="column leaderboard-container">
<p class="h1 mb-2">Geektoberfest'20 Leaderboard</p>
<center>
<div style="max-width: 1000px">
<p class="h5 mb-5">
Note: Quality of the PRs you make has way more weightage in final
evaluation than the Number of PRs you make, don't take this
leaderboard as a sign of who's winning. Making the most number of
PRs is not the goal of this event.
</p>
</div>
</center>
<div id="preloader"></div>
<div class="table-content" id="table-data">
<table class="table table-borderless" id="leaderboard-table">
<div class="table-header">
<thead class="thead-dark">
<tr>
<th scope="col"><strong>RANK</strong></th>
<th scope="col"><strong>PICTURE</strong></th>
<th scope="col"><strong>USERNAME</strong></th>
<th scope="col"><strong>NUMBER OF PRs</strong></th>
<th scope="col"><strong>DETAILS</strong></th>
</tr>
</thead>
</div>
<tbody></tbody>
<script src="./public/js/leaderboard.js"></script>
</table>
</div>
</div>
</div>
<div class="section fp-auto-height" id="section5">
<footer id="footer">
<div class="footer">
<ul class="social list-unstyled mt-4">
<p class="contact-text h4"><em>Contact Us At:</em></p>
<li>
<a
href="https://www.facebook.com/geekhaveniiita"
target="_blank"
class="fab fa-2x fa-facebook icon"
></a>
</li>
<li>
<a
href="https://twitter.com/geekhaveniiita?s=20"
target="_blank"
class="fab fa-2x fa-twitter icon"
></a>
</li>
<li>
<a
href="https://www.linkedin.com/company/geekhaven-iiita"
target="_blank"
class="fab fa-2x fa-linkedin icon"
></a>
</li>
<li>
<a
href="https://github.com/GeekHaven/"
target="_blank"
class="fab fa-2x fa-github icon"
></a>
</li>
<li>
<a
href="mailto:geekhaven@iiita.ac.in"
target="_blank"
class="fa fa-2x fa-envelope icon"
></a>
</li>
</ul>
<div class="text-copyright">
<p class="m-0 pb-2">
© Copyright <strong>Geektoberfest'20</strong> | GeekHaven - IIIT
Allahabad
</p>
</div>
</div>
</footer>
</body>
</html>