generated from nicolas-van/bootstrap-4-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 11
/
team.html
54 lines (48 loc) · 2.09 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
---
layout: default
title: Team
---
{% for person in site.people %}
<div class="person">
<div class="person-headshot">
<img class="portrait" src="{{ person.image }}"/>
</div>
<div class="person-bio">
<h2 class="person-name">{{ person.name }}</h2>
<h5 class='position'>
{{ person.position }}
</h5>
<a class="bio-item" title="email" href="mailto:{{ person.email }}"><svg class='feather'>Email
<use xlink:href='{{ "/assets/images/feather-sprite.svg#mail" | relative_url }}'/></svg></a>
{% if person.twitter %}
<a class="bio-item" title="twitter" href="https://www.twitter.com/{{ person.twitter }}"><svg class='feather'>Twitter
<use xlink:href='{{ "/assets/images/feather-sprite.svg#twitter" | relative_url }}'/></svg></a>
{% endif %}
{% if person.website %}
<a class="bio-item" title="website" href="{{ person.website }}"><svg class='feather'>Website
<use xlink:href='{{ "/assets/images/feather-sprite.svg#home" | relative_url }}'/></svg></a>
{% endif %}
{% if person.github %}
<a class="bio-item" title="github" href="https://github.com/{{ person.github }}"><svg class='feather'>Github
<use xlink:href='{{ "/assets/images/feather-sprite.svg#github" | relative_url }}'/></svg></a>
{% endif %}
<div class="person-content">
{{ person.content | markdownify }}
</div>
</div>
</div>
{% endfor %}
<h2>Alumni</h2>
<p>Thanks to our past team members for their contributions! (Listing only those who have provided a headshot.)</p>
<div class="alumni">
{% for person in site.alumni %}
<div class="person_alumni">
<div class="person-bio_alumni">
<h5 class="person-name">{{ person.name }}</h5>
</div>
<div class="person-headshot">
<img class="portrait_alumni" src="{{ person.image }}"/>
</div>
</div>
{% endfor %}
</div>