-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathalumni.html
More file actions
34 lines (28 loc) · 951 Bytes
/
alumni.html
File metadata and controls
34 lines (28 loc) · 951 Bytes
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
---
layout: default
type: website
---
<div class='team-member'>
<section class='section team'>
<div class='section-title'>
<h2 class='header text-xl'>Alumni</h2>
<h2 class='header-shadow'>Alumni</h2>
</div>
<div class='flex-row'>
<!-- member info section-->
<!-- member image-->
<div class='team-member-img-wrapper'>
<img class='team-member-img' src="{{ site.baseurl }}/images/people/{{ page.id }}.jpg" alt="{{ page.member-name }}" />
</div>
<div class='bio'>
<h3 class='text-m name'>{{ page.member-name }}</h3>
<span class="text-xs title">{{ page.position }}</span>
{% include team-bio.html %}
<!-- member bio-->
<div class='text-xxs generated-content'>{{ content }}</div>
{% include team-blog.html %}
<a class='text-xxs all' href="{{ site.baseurl }}/#team">View Full Team...</a>
</div>
</div>
</section>
</div>