This repository has been archived by the owner on Oct 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
eboards.html
50 lines (41 loc) · 1.53 KB
/
eboards.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
---
layout: page
title: Executive Boards
---
<div>
<h1>Current E-Board 2017-2018</h1>
<div class="row">
<div class="col-md-3">
<ul style="list-style-type: none;">
<li><img src="http://placehold.it/60x60"/><p>President - Kristian Wu - 2019</li>
<li><img src="http://placehold.it/60x60"/><p>Vice President - Deepti Upmaka - 2019</li>
<li><img src="http://placehold.it/60x60" /><p>Secretary - Roshni Shah - 2019</li>
<li><img src="http://placehold.it/60x60" /><p>Treasurer - Samrat Darisipudi - 2019</li>
<li><img src="http://placehold.it/60x60" /><p>EGC Representative - Daniel Pattathil - 2020</li>
<li><img src="http://placehold.it/60x60" /><p>Director of Professional Relations - Neharika Bhandari - 2018</li>
<li><img src="http://placehold.it/60x60" /><p>Director of Outreach and Marketing - Vallab Nayak - 2020</li>
<li><img src="http://placehold.it/60x60" /><p>Director of Fundraising - Sagar Shah - 2020</li>
<li><img src="http://placehold.it/60x60" /><p>Director of Web Technology - Bhargav Tarpara - 2018</li>
</ul>
</div>
</div>
{% for year in site.data.eboards %}
<h1>{{ year[0] }}</h1>
<table>
{% for person in year[1] %}
<tr>
<td> {{ person[1].role }} </td>
<td>
{% if person[1].url %}
<a href="{{person[1].url}}">{{ person[1].name }}</a>
{% else %}
{{ person[1].name }}
{% endif %}
<br>
{{ person[1].class }}
</td>
</tr>
{% endfor %}
</table>
{% endfor %}
</div>