-
Notifications
You must be signed in to change notification settings - Fork 51
/
volunteers.html
98 lines (96 loc) · 3.26 KB
/
volunteers.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
<!DOCTYPE html>
<html>
<head>
<title>PyDelhi Conference - Volunteers</title>
<meta name="description" content="Volunteers for PyDelhi Conference" />
<!-- Favicon and Touch Icons
========================================================= -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!-- /Favicon
========================================================= -->
<link href="css/main.css" rel="stylesheet">
<style type="text/css">
#header {
background-color: white;
}
h1 {
padding: 30px;
text-align: center;
margin-top: 120px;
color: #4b5d59
}
</style>
</head>
<body>
<header id="header" class="simple-page">
<div class="container">
<!-- logo -->
<div class="header-logo" id="header-logo">
<a href="index.html">
<img src="img/logo.png" alt=""/>
</a>
</div>
</div>
</header>
<h1>Here is a list of volunteers for PyDelhi Conference</h1>
<div id="vol-list-container">
<h2>Volunteers</h2>
<p id="vol-list">
</p>
<h2>Past Volunteers</h2>
<p id="past-vol-list">
</p>
</div>
<script type="text/javascript">
// Please keep the list sorted alphabetically
var volunteers_list = [
'Animesh Ghosh',
'Ishaan Arora',
'Daksh Jain',
'Gora Mohanty',
'Akkshay Arora',
'Akshita Dixit',
'Anuvrat Parashar',
'Satyakam Goswami',
'Advik',
'Jaidev Deshpande',
'Tushar Malik',
'Zorawar Purohit'
]
var past_volunteers_list = ['Akash Mishra',
'Akkshay Arora',
'Akul Mehra',
'Amit Singh Sethi',
'Amit kumar',
'Aniket Maithani',
'Anuj Singh',
'Anuvrat Parashar',
'Ashutosh Kumar Singh',
'Fasih Ahmed Fakhri',
'G.T. Rao',
'Gora Mohanty',
'Hans Gogia',
'Harris',
'Jaidev',
'Kushagara Singh',
'Laksh Arora',
'Manoj Pandey',
'Peeyush Aggarwal',
'Rajat Goyal',
'Rajat Saini',
'Ramsevak',
'Rishabh Singh',
'Sahil Joseph',
'Sanyam Khurana',
'Satyakaam Goswami',
'Saurabh Kumar',
'Shantanu',
'Shyam Saini',
'Vinay Kumar Dahiya',
'Vipin Rathi'];
document.getElementById("vol-list").innerHTML = volunteers_list.sort().join(", ");
document.getElementById("past-vol-list").innerHTML = past_volunteers_list.sort().join(", ");
</script>
</body>
</html>