forked from pclubiitk/pclub.in
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
207 lines (197 loc) · 4.8 KB
/
contact.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
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
---
layout: default
title: Contact
permalink: /contact.html
coordies:
'Arjun Sinha':
mail: arjuns@iitk.ac.in
github: ajs97
image: arjun.jpg
'Milind Luthra':
mail: milindl@iitk.ac.in
github: milindl
image: milind.jpg
'Varun Khare':
mail: varun@iitk.ac.in
github: varunkhare1234
image: varun.png
'Yash Srivastav':
mail: yashsriv@iitk.ac.in
github: yashsriv
image: yash.jpg
secys:
'anantp':
name: Anant Prakash
hall: 2
number: 7318019903
room: B-123
'bhavish':
name: Bhavishya
hall: 2
number: 9413015982
room: B-123
'lakshayb':
name: Lakshay Bandlish
hall: 2
number: 7275935088
room: C-228
'nishanta':
name: Nishant Arya
hall: 2
number: 9752340956
room: B-218
'raghavag':
name: Raghav Aggarwal
hall: 2
number: 9839130512
room: C-229
'sunsingh':
name: Gagandeep Singh
hall: 3
number: 9454801558
room: B-316
'jatinj':
name: Jatin Jindal
hall: 3
number: 7318019187
room: 125/3
'pushkard':
name: Pushkar Dixit
hall: 3
number: 8317032812
room: B-245
'abhays':
name: Abhay Pratap Singh
hall: 5
number: 9455065930
room: D-311
'ayushb':
name: Ayush Bansal
hall: 5
number: 9462545882
room: D-213
'parv':
name: Parv Mor
hall: 5
number: 7318019085
room: C-207
'abhiyad':
name: Abhishek Yadav
hall: 10
number: 9005296305
room: C-348
'ahsanb':
name: Ahsan Barkati
hall: 10
number: 7318018978
room: C-342
'aniketp':
name: Aniket Pandey
hall: 10
number: 9599881876
room: B-415
'hritvikt':
name: Hritvik Taneja
hall: 10
number: 8004982413
room: B-410
---
<br>
<div class="row">
<div class="columns samping card">
<h1 style="color: #00ffff;"> Current Coordinators </h1>
<div class="flex-col">
<div class="flex-row flex-row-wrap single-row">
{% for coordie in page.coordies %}
<div>
<div> <img src="assets/image/{{ coordie[1].image }}" class="pic" alt="{{ coordie[0] }}"> </div>
<div class="flex-col flex-grow-1">
<div> <b> {{ coordie[0] }} </b> </div>
<div> <a href="mailto:{{ coordie[1].mail }}"> {{ coordie[1].mail }} </a> </div>
<div> <a href="https://github.com/{{ coordie[1].github }}" target="_blank">{{ coordie[1].github }}@github</a></div>
</div>
</div>
{% endfor %}
</div>
</div>
<h1 style="color: #00ffff;">Current Secretaries</h1>
<table class="secyTable" cellpadding="5">
<tr>
<th>Name</th>
<th>Hall</th>
<th>Mobile Number</th>
<th>Email-ID</th>
<th>Room No.</th>
</tr>
{% for secy in page.secys %}
<tr>
<td class="secyRow" align="center"> {{ secy[1].name }}</td>
<td class="secyRow" align="center"> {{ secy[1].hall }} </td>
<td class="secyRow" align="center"> {{ secy[1].number }} </td>
<td class="secyRow" align="center"> <a href="mailto:{{ secy[0] }}@iitk.ac.in"> {{ secy[0] }}@iitk.ac.in </a> </td>
<td class="secyRow" align="center"> {{ secy[1].room }} </td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% for year in site.excoordies %}
<div class="row new-card-margin">
<div class="columns samping card">
<h1> {{ year[0] }} Coordinators </h1>
<div class="flex-col">
{% for coordie in year[1] %}
<div class="flex-row single-row">
<div style="flex-shrink: 0;">
<img src="assets/image/{{ coordie[1].image }}" class="pic" alt="{{ coordie[0] }}">
</div>
<div class="flex-col flex-grow-1">
<div class="flex-row flex-row-wrap">
<td> <b> {{ coordie[0] }} </b> </td>
<td> <a href="mailto:{{ coordie[1].mail }}"> {{ coordie[1].mail }} </a> </td>
<td> <a href="https://github.com/{{ coordie[1].github }}" target="_blank">{{ coordie[1].github }}@github</a></td>
</div>
<div class="flex-grow-1">
<p class="left-align-text">
{{ coordie[1].body }}
</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
<style>
.new-card-margin {
margin-top: 25px;
}
.secyTable {
width: 100%;
}
.secyTable tr {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.secyTable tr:hover {
background-color: #333333;
-webkit-transform:scale(1.05);
-moz-transform:scale(1.05);
-ms-transform:scale(1.05);
-o-transform:scale(1.05);
transform:scale(1.05);
}
.secyRow {
display:table-cell;
}
.secyRow b {
color: #33dddd;
}
.secyTable tr:nth-child(even) {
background-color: #2F4F4F;
}
</style>