forked from ritsec/ritsec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eboard.html
33 lines (32 loc) · 900 Bytes
/
eboard.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
---
layout: info_page
title: Executive Board
---
{% for role in site.data.settings.eboard_roles %}
<div class="container">
<div class="row">
<div class="col-xs-12 col-lg-3 col-md-4 col-sm-4 col-xs-10 vcenter">
<div class="eboard-thumbnail">
<img
src="assets/images/eboard/{{ role.image }}"
class="real traditions-page-thumbnail eboard-thumbnail hcenter-div"
style="height: 100%; width: 100%; object-fit: cover; position: center; top: -2px"
alt="assets/images/eboard/{{ role.image }}"
/>
</div>
</div>
<div
class="col-xs-12 col-sm-6 col-md-8 col-xs-10 vcenter"
style="position: relative"
>
<h2>{{ role.name }}</h2>
<h3>{{ role.appointee }}</h3>
<p>{{ role.description }}</p>
<p><b>Contact:</b> {{ role.contact }}</p>
</div>
</div>
</div>
<br />
<br />
<br />
{% endfor %}