-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpeople.html
More file actions
58 lines (58 loc) · 2.59 KB
/
Copy pathpeople.html
File metadata and controls
58 lines (58 loc) · 2.59 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
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
---
layout: noCol
title: People
hero-text: "Who is part of the team"
---
<div class="row">
<h1 class="pageTitle center">Students</h1>
<div class="row">
{% for post in site.posts %}
{% if post.post-type == "people" %}
{% if post.person-type == "student" %}
<div class="small-12 medium-4 large-3 columns thumbnail-tile">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<div class="thumbnail-container">
<img class="thumbnail-image" src="{{ post.thumbnail }}">
<span class="thumbnail-text">{{ post.tile-name }}</span>
</div>
</a>
</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
<h1 class="center">Faculty</h1>
<div class="row">
{% for post in site.posts %}
{% if post.post-type == "people" %}
{% if post.person-type == "faculty" %}
<div class="small-12 medium-4 large-3 columns thumbnail-tile">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<div class="thumbnail-container">
<img class="thumbnail-image" src="{{ post.thumbnail }}">
<span class="thumbnail-text">{{ post.tile-name }}</span>
</div>
</a>
</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
<h1 class="center">Alumni</h1>
<div class="row">
{% for post in site.posts %}
{% if post.post-type == "people" %}
{% if post.person-type == "alumni" %}
<div class="small-12 medium-4 large-2 columns thumbnail-tile">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<div class="thumbnail-container">
<img class="thumbnail-image" src="{{ post.thumbnail }}">
<span class="thumbnail-text">{{ post.tile-name }}</span>
</div>
</a>
</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>