-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmembers.html
88 lines (81 loc) · 3.54 KB
/
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: Members
description: Our amazing members are transdisciplinary scientists, clinicians, and patient advocates from all over the world !
sitemap:
priority: 0.8
---
<section class="page-section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Our Amazing People</h2>
<h3 class="section-subheading text-muted">The Global Consortium of Chemosensory Researchers (GCCR), consists of open-science contributors: transdisciplinary scientists, clinicians, and patient advocates from all over the world.</h3>
{% include members-map.html %}
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Committees
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
{% for item in site.data.committees %}
<div class="mt-4 text-left">
<h3 class="">{{ item.committee }}</h3>
{% for item in item.listing %}
<h4 class="h4">{{ item.time }}</h4>
<div class="d-flex text-left">
<p class="text-muted">
{{ item.members | join: ", " }}
</p>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Our Members
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<div class="row">
<table class="table table-hover text-left">
<thead>
<tr>
<th>Name</th>
<th>Institution</th>
<th>Country</th>
</tr>
</thead>
<tbody>
{% for item in site.data.members %}
<tr>
{% if item.url %}
<td><a href="{{ item.url }}">{{ item.name }}</a></td>
{% else %}
<td>{{ item.name }}</td>
{% endif %}
<td>{{ item.institution }}</td><td>{{ item.country }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>