-
Notifications
You must be signed in to change notification settings - Fork 2
/
collaborators.html
48 lines (30 loc) · 1.02 KB
/
collaborators.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
---
layout: page
title: Collaborators
---
<div class="row">
{% for item in site.data.collaborators %}
<div class="row col-lg-6 mb-4">
<div class="card h-100 border-0">
<a href="{{ item.website }}"><img class="card-img-top" src="{{ site.baseurl}}/assets/logos/{{ item.image }}" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="{{ item.website }}">{{ item.institution }}</a>
</h4>
<p class="card-text">
<ul>
{% for topic in item.topic %}
<li>
{% for collaborator in topic.collaborators %}
<a href="{{ collaborator.website }}">{{ collaborator.name }}</a>,
{% endfor %}
{{ topic.title }}
</li>
{% endfor %}
</ul>
</p>
</div>
</div>
</div>
{% endfor %}
</div>