-
Notifications
You must be signed in to change notification settings - Fork 3
/
organization.html
executable file
·69 lines (65 loc) · 2.55 KB
/
organization.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
---
title: Organization
layout: page
slide_id: 1
---
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6">
{% for committee in site.data.organization %}
{% if committee.title and committee.column == 1 %}
<div class="card">
<div class="card-header text-white bg-dark"><strong>{{committee.title}}</strong></div>
{% if committee.members %}
{% for member in committee.members %}
<div class="card-block bg-light committee">
<p>
<a href="{{ member.homepage }}"><strong>{{ member.name }}</strong></a>
</p>
{% if member.post %}
<p class="card-subtitle text-muted" style="font-size: 90%;">{{ member.post }}</p>
{% endif %}
<p class="card-subtitle text-muted" style="font-size: 90%;">{{ member.org }}</p>
</div>
{% endfor %}
{% else %}
<div class="card-block bg-light committee">
<p class="card-title">TBA</p>
<p><strong>TBA</strong>
</p>
<p class="card-subtitle text-muted" style="font-size: 90%;">TBA</p>
</div>
{% endif %}
</div>
{% endif %}
{% endfor %}
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6">
{% for committee in site.data.organization %}
{% if committee.title and committee.column == 2 %}
<div class="card">
<div class="card-header text-white bg-dark"><strong>{{committee.title}}</strong></div>
{% if committee.members %}
{% for member in committee.members %}
<div class="card-block bg-light committee">
<p>
<a href="{{ member.homepage }}"><strong>{{ member.name }}</strong></a>
</p>
{% if member.post %}
<p class="card-subtitle text-muted" style="font-size: 90%;">{{ member.post }}</p>
{% endif %}
<p class="card-subtitle text-muted" style="font-size: 90%;">{{ member.org }}</p>
</div>
{% endfor %}
{% else %}
<div class="card-block bg-light committee">
<p class="card-title">TBA</p>
<p><strong>TBA</strong>
</p>
<p class="card-subtitle text-muted" style="font-size: 90%;">TBA</p>
</div>
{% endif %}
</div>
{% endif %}
{% endfor %}
</div>
</div>