-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathalumni.html
More file actions
26 lines (25 loc) · 1.17 KB
/
alumni.html
File metadata and controls
26 lines (25 loc) · 1.17 KB
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
---
layout: standard
title: Alumni
permalink: /alumni/
---
<section class="block block__team">
<div class="container">
<div class="team__grid">
{% for person in site.people %}{%if person.alumni %}{% include extractname.html entry=person %}
<a href="{{ person.url }}" class="team__member">
<div class="team__member-image">
<img src="{%if person.image contains 'http'%}{{person.image}}{%else%}{{site.data.images.directory | relative_url }}/{%if person.image and person.image != "" %}{{person.image}}{% else %}{{site.data.images.person_placeholder}}{%endif%}{%endif%}" alt="Image of {{person.title}}">
</div>
<div class="team__member-details">
<div>
<h2>{{ name }}</h2>
{%if person.position %}<p>{{ person.position }}{%if person.institution %}, {{ person.institution }}{% endif %}</p>{% endif %}
</div>
<span>View Profile</span>
</div>
</a>{% endif %}
{% endfor %}
</div>
</div>
</section>