-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathalumni_restructured.html
499 lines (421 loc) · 15.2 KB
/
alumni_restructured.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html>
<head>
<title>Laboratory for Computational Social Systems (LCS2): Contact Us</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/group.css">
<link rel="stylesheet" href="/css/font-awesome-animation.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="/css/slider.css">
<script type="text/javascript" src="/js/slider.js"></script>
<style type="text/css">
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
:root {
--purple: hsl(240, 80%, 89%);
--pink: hsl(0, 59%, 94%);
--light-bg: hsl(204, 37%, 92%);
--light-gray-bg: hsl(0, 0%, 94%);
--white: hsl(0, 0%, 100%);
--dark: hsl(0, 0%, 7%);
--text-gray: hsl(0, 0%, 30%);
}
body {
background: whitesmoke;
font-family: "Space Grotesk", sans-serif;
color: var(--dark);
}
h3 {
font-size: 1.2em;
font-weight: 600;
}
p {
font-size: 0.85em;
line-height: 1.7;
font-weight: 300;
color: var(--text-gray);
}
.description {
white-space: wrap;
}
a {
text-decoration: none;
color: inherit;
}
.wrap {
display: flex;
justify: space-between;
align-items: stretch;
width: 100%;
gap: 24px;
padding: 24px;
flex-wrap: wrap;
}
.box {
display: flex;
flex-direction: column;
flex-basis: 100%;
position: relative;
padding: 14px;
background: #fff;
}
.box-top {
display: flex;
flex-direction: column;
position: relative;
gap: 12px;
margin-bottom: 36px;
}
.box-image {
width: 100%;
height: 260px;
object-fit: cover;
object-position: 50% 20%;
}
.title-flex {
display: flex;
justify-content: space-between;
align-items: center;
}
.box-title {
border-left: 3px solid var(--purple);
padding-left: 12px;
}
.user-follow-info {
color: hsl(0, 0%, 60%);
}
.button {
display: block;
justify-content: center;
align-items: center;
text-align: center;
margin-top: auto;
padding: 9px;
color: #000;
background: transparent;
box-shadow: 0px 0px 0px 1px black inset;
transition: background 0.4s ease;
}
.button:hover {
background: var(--purple);
}
.fill-one {
background: var(--light-bg);
}
.fill-two {
background: var(--pink);
}
/* RESPONSIVE QUERIES */
@media (min-width: 320px) {
.title-flex {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
}
.user-follow-info {
margin-top: 6px;
}
}
@media (min-width: 460px) {
.title-flex {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: start;
}
.user-follow-info {
margin-top: 6px;
}
}
@media (min-width: 640px) {
.box {
flex-basis: calc(50% - 12px);
}
.title-flex {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
}
.user-follow-info {
margin-top: 6px;
}
}
@media (min-width: 840px) {
.title-flex {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: start;
}
.user-follow-info {
margin-top: 6px;
}
}
@media (min-width: 1024px) {
.box {
flex-basis: calc(33.3% - 16px);
}
.title-flex {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
}
.user-follow-info {
margin-top: 6px;
}
}
@media (min-width: 1100px) {
.box {
flex-basis: calc(25% - 18px);
}
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-lg navbar-light fixed-top bg-white">
<a class="navbar-brand" href="/"><img src="../img/logo.png" alt="" height="60"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<strong>People</strong>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/people.html">Current Members</a>
<a class="dropdown-item" href="/alumni.html">Alumni</a>
<a class="dropdown-item" href="/lab_visitors.html">Visitors</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<strong>Research</strong>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/research.html">Research@LCS2</a>
<a class="dropdown-item" href="/funding.html">Funded Projects</a>
<a class="dropdown-item" href="/resources.html">Resources@LCS2</a>
<!-- <div class="dropdown-divider"></div> -->
<!-- <a class="dropdown-item" href="/job_post.html">Opportunities@LCS2</a> -->
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<strong>Publications</strong>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/publications.html">Research Papers</a>
<a class="dropdown-item" href="/tutorials.html">Tutorials</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<strong>Events</strong>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/talks.html">Talks@LCS2</a>
<a class="dropdown-item" href="/events.html">Events@LCS2</a>
<a class="dropdown-item" href="/media.html">Media Coverage</a>
<a class="dropdown-item" href="/paper_readings.html">Paper Reading</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<strong>Others</strong>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/achievements.html">Achievements</a>
<a class="dropdown-item" href="/gallery.html">Gallery</a>
<!-- <a class="dropdown-item" href="/contact.html">Contacts</a> -->
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html"><strong>Contact Us</strong></a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="row" style="margin-top: 100px;"></div>
<h1> Alumni</h1> </br>
<h2> Graduate Students at LCS2</h2>
<div class="wrap">
<!-- * -->
<div class="box">
<a href='https://www.linkedin.com/in/yashkumaratri/' target="_blank">
<div class="box-top">
<img class="box-image" src="/img/people/yash.jpg">
<div class="title-flex">
<h5>Yash Kumar Atri</h5>
<p>Post Doctoral Researcher at University of Virginia</p>
<p>Thesis Title: Advancing Text Summarization with Conscience, Comprehension, and Multimodality.</p>
</div>
</div>
</a>
</div>
<!-- * -->
<div class="box">
<a href='https://sites.google.com/iiitd.ac.in/shivani-kumar/home' target="_blank">
<div class="box-top">
<img class="box-image" src="/img/people/shivani.jpg">
<div class="title-flex">
<h5>Shivani Kumar</h5>
<p>Post Doctoral Researcher at University of Michigan</p>
<p>Thesis Title: Understanding and Explaining Affective Traits in English and Code-mixed Conversations.</p>
</div>
</div>
</a>
</div>
<!-- 2 -->
<div class="box">
<a href='https://scholar.google.co.in/citations?user=aoaCs08AAAAJ&hl=en' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/subhabrata_dutta.jpeg">
<div class="title-flex">
<h5>Subhabrata Dutta</h5>
<p>Postdoctoral Researcher at TU Darmstadt, Germany</p>
<p> Thesis Title: Engagement to Persuasion: A Computational Study on Online Social Discourse.</p>
</div>
</div>
</a>
</div>
<!-- 3 -->
<div class="box">
<a href='https://www.linkedin.com/in/hridoy-sankar-dutta-18448a63/?ppe=1' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/hriday.jpeg">
<div class="title-flex">
<h5>Hriday Sankar Dutta</h5>
<p>Postdoctoral Researcher at Cambridge University</p>
<p>Thesis Title: Detecting and reasoning collusive activities in online media.</p>
</div>
</div>
</a>
</div>
</div> <!-- wrap --></br></hr></br>
<h2> Postdoctoral Researchers at LCS2</h2>
<div class="wrap">
<!-- 1 -->
<div class="box">
<a href='https://www.linkedin.com/in/nitish-prajapati-9834a0b7/' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/default.png">
<div class="title-flex">
<h5>Dr. Nitish Prajapati</h5>
<p>Founder and Managing Director, Exponential Learning Centre.</p>
</div>
</div>
</a>
</div>
<!-- 2 -->
<div class="box">
<a href='https://scholar.google.com/citations?hl=en&user=FlvGeckAAAAJ' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/shaurya_shriyam.jpg">
<div class="title-flex">
<h5>Dr. Shaurya Shriyam</h5>
<p>Assistant Professor, Mechanical Engineering, IIT Delhi.</p>
</div>
</div>
</a>
</div>
<!-- 3 -->
<div class="box">
<a href='https://scholar.google.co.in/citations?user=crCsIoUAAAAJ&hl=en' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/Partha_Sarathi_Paul.jpeg">
<div class="title-flex">
<h5>Dr. Partha Sarathi Paul</h5>
<p>Associate Professor, School of Computer Engineering, Kalinga Institute of Industrial Technology.</p>
</div>
</div>
</a>
</div>
<!-- 4 -->
<div class="box">
<a href='https://www.ctanujit.org/' target="_blank">
<div class="box-top">
<img class="box-image" src="img/people/Tanujit_Chakraborty.png">
<div class="title-flex">
<h5>Dr. Tanujit Chakraborty</h5>
<p>Assistant Professor of Mathematics (Statistics & AI) at Sorbonne University and Sorbonne Center for AI.</p>
</div>
</div>
</a>
</div>
</div> <!-- wrap --></br></hr></br>
<!-- RA -->
<h2> Research Associates</h2>
<div class="wrap">
<!-- <table style="text-align:left; width:100%"> -->
<table style="width:100%; font-size: 13px;" >
<tr>
<th><a href="https://www.linkedin.com/in/isha-motiyani-28738a217/" target="_blank">Isha Motiyani</a></th>
<th><a href="https://www.linkedin.com/in/shubhanshu-khatana-4b5562214" target="_blank">Shubhanshu Khatana</a></th>
<th><a href="https://www.linkedin.com/in/shaonli-pal-891727153/" target="_blank">Shaonli Pal</a></th>
<th><a href="https://www.linkedin.com/in/anik-chatterjee-257a82182/" target="_blank">Anik Chatterjee</a></th>
<th><a href="https://www.linkedin.com/in/sheyril-agarwal/" target="_blank">Sheyril Agarwal</a></td></th>
<th><a href="https://www.linkedin.com/in/manasimittal33/" target="_blank">Manasi Mittal</a></td></th>
<th><a href="https://www.linkedin.com/in/atharvajk/" target="_blank">Atharva Kulkarni</a></th>
</tr>
<tr>
<th><a href="https://www.linkedin.com/in/shramanpramanick/" target="_blank">Shraman Pramanick</a></th>
<th><a href="https://www.linkedin.com/in/mritu/" target="_blank">Rituparna Mukherjee</a></th>
<th><a href="https://www.linkedin.com/in/tanmay17061" target="_blank">Tanmay Garg</a></th>
<th><a href="https://www.linkedin.com/in/shramanpramanick/" target="_blank">Shraman Pramanick</a></th>
<th><a href="https://github.com/kartikaggarwal98" target="_blank">Kartik Aggarwal</a></th>
<th><a href="https://sites.google.com/view/shreyagupta/home" target="_blank">Shreya Gupta</a></th>
<th><a href="https://www.linkedin.com/in/manjot-bedi-42843333/" target="_blank">Manoj Bedi</a></th>
</tr>
<tr>
<th><a href="https://www.linkedin.com/in/iamkartik/" target="_blank">Kartik Sharma</a></th>
<th><a href="https://www.linkedin.com/in/uditarora09" target="_blank">Udit Arora</a></th>
</tr>
</table>
</div> <!-- wrap -->
<!-- Finished -->
<div class="footer">
<p>
<a href="/">Laboratory for Computational Social Systems (LCS2)</a>
at
<a href="http://www.iiitd.ac.in/">Indian Institute of Technology Delhi (IIT-Delhi)</a><br/>
<!-- Template by <a href="https://github.com/uwsampa/research-group-web">Research Group Website Template</a> -->
</p>
</div>
</div> <!-- /container -->
</div>
<!-- Support retina images. -->
<script type="text/javascript"
src="/js/srcset-polyfill.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129817111-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129817111-1');
</script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>