-
Notifications
You must be signed in to change notification settings - Fork 0
/
executive-members.html
43 lines (41 loc) · 1.14 KB
/
executive-members.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
---
layout: default
title: GTALUG Executive Members
---
<div class="page-header">
<h1>GTALUG Board Members</h1>
<p class="lead">People who volunteer for GTALUG. <!-- TODO This is stupidly written. --></p>
</div>
<div class="row">
{% for member in site.data.executives %}
<div class="col-md-6">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">{{ member.name }}</h3>
</div>
<table class="table table-condensed">
<tbody>
{% if member.email %}
<tr>
<th>Email</th>
<td>{{ member.email }}</td>
</tr>
{% endif %}
{% if member.homepage %}
<tr>
<th>Homeapge</th>
<td><a href="{{ member.homepage }}">{{ member.homepage }}</a></td>
{% endif %}
{% if member.twitter or member.github %}
<tr>
<th>Social</th>
<td>{% if member.twitter %}<a href="https://www.twitter.com/{{ member.twitter }}">Twitter</a>{% endif %} {% if memebr.github %}<a href="https://github.com/{{ member.github }}">GitHub</a>{% endif %}</td>
</tr>
{% endif %}
</tbody>
</table>
<div class="panel-footer"></div>
</div>
</div>
{% endfor %}
</div>