-
Notifications
You must be signed in to change notification settings - Fork 1
/
committee.html
35 lines (33 loc) · 1.29 KB
/
committee.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
---
layout: default
title: Committee
permalink: /committee.html
---
<div style="background-color: rgba(32, 101, 198, 0.75); color: rgb(233, 233, 233);" class="text-box">
<div class="container first-paragraph">
<h1 class="display-3">Committee</h1>
<div class="divider div-transparent"></div>
<p>Meet who makes SER possible.</p>
</div>
</div>
<div style="color: #777; background-color:white;" class = "text-box">
<div class="container align-middle">
<div id="committee" class="row">
{% for person in site.data.committee %}
<div class="col d-flex justify-content-center">
<div class="clearfix">
<div>
<div class="brief-avatar justify-content-center"><img src="{{ person.image }}" alt="{{ person.name }}"></div>
<div class="brief-name" style="text-align: left;">{{ person.name }}</div>
<div class="brief-job">{{ person.institution }}</div>
{% for job in person.committee %}
<div class="brief-description">{{ job }} Committee</div>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>
<div class="brief-item lslide" style="width: 400px; margin-right: 10px;"></div>
</div>
</div>