-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathteam.html
56 lines (54 loc) · 1.55 KB
/
team.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
---
title: People
layout: default
bodyClass: page-team-list
---
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>People</h1>
<p>
The growing metalearning community.
</p>
</div>
</div>
</div>
</div>
<div class="container pb-6">
<div class="row">
{% for team in site.team %}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img
alt="{{ team.title }} logo"
class="img-fluid mb-2"
src="{{site.baseurl}}{{ team.image }}"
/>
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<p class="team-description">{{ team.jobtitle }} at {{ team.organization }}</p>
<p class="team-description" style="color: #BC2828">{{ team.research }}</p>
{% if team.linkedinurl %}
<a target="_blank" href="{{ team.linkedinurl }}">LinkedIn</a> /
{% endif %}
{% if team.github %}
<a target="_blank" href="{{ team.github }}">Github</a> /
{% endif %}
{% if team.website %}
<a target="_blank" href="{{ team.website }}">Website</a> /
{% endif %}
{% if team.email %}
<a target="_blank" href="mailto:{{ team.email }}">Email</a>
{% endif %}
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endfor %}
</div>
</div>