forked from yishanhe/jekyll-conference-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
committees.html
70 lines (67 loc) · 3.31 KB
/
committees.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
70
---
layout: page
slide_id: 1
---
<div class="container">
<div class="row mt-xs-0 mt-sm-0 mt-md-1 mt-lg-2 mt-xl-3 mb-xs-2 mb-sm-2">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6">
<!--######### Organizing ##########-->
<div class="card">
<div class="card-header text-white bg-inverse"> <i class="fa fa-users mr-3" aria-hidden="true"></i>Organizing Committee</div>
{% if site.data.conference.organizing_committees %}
{% for committee in site.data.conference.organizing_committees %}
<div class="card-block bg-faded">
<h6 class="card-title">{{ committee.role }}</h6>
<p><a href="{{ committee.homepage }}"><strong>{{ committee.name }}</strong></a><p>
<h6 class="card-subtitle text-muted">{{ committee.org }}</h6>
</div>
{% endfor %}
{% else %}
<div class="card-block bg-faded">
<h6 class="card-title">TBA</h6>
<p><strong>TBA</strong><p>
<h6 class="card-subtitle text-muted">TBA</h6>
</div>
{% endif %}
</div>
<!--######### Steering ##########-->
<div class="card">
<div class="card-header text-white bg-inverse"><i class="fa fa-users mr-3" aria-hidden="true"></i>Steering Committee</div>
{% if site.data.conference.steering_committees %}
{% for committee in site.data.conference.steering_committees %}
<div class="card-block bg-faded">
<p><a href="{{ committee.homepage }}"><strong>{{ committee.name }}</strong></a><p>
<h6 class="card-subtitle text-muted">{{ committee.org }}</h6>
</div>
{% endfor %}
{% else %}
<div class="card-block bg-faded">
<p><strong>TBA</strong><p>
<h6 class="card-subtitle text-muted">TBA</h6>
</div>
{% endif %}
</div>
<!--####################################-->
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6">
<!--######### TPC ##########-->
<div class="card">
<div class="card-header text-white bg-inverse"><i class="fa fa-users mr-3" aria-hidden="true"></i>Technical Program Committee</div>
{% if site.data.conference.technical_program_committees %}
{% for committee in site.data.conference.technical_program_committees %}
<div class="card-block bg-faded">
<p><a href="{{ committee.homepage }}"><strong>{{ committee.name }}</strong></a><p>
<h6 class="card-subtitle text-muted">{{ committee.org }}</h6>
</div>
{% endfor %}
{% else %}
<div class="card-block bg-faded">
<p><strong>TBA</strong><p>
<h6 class="card-subtitle text-muted">TBA</h6>
</div>
{% endif %}
</div>
<!--####################################-->
</div>
</div>
</div>