-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
163 lines (142 loc) · 4.91 KB
/
people.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
layout: default
title: People
notitle: true
---
{%
assign ryan = site.data.people["ryan"]
%}
{% assign phds = site.data.people | where: "category", "phd" %}
{% assign masters = site.data.people | where: "category", "masters" %}
{% assign ugs = site.data.people | where: "category", "ug" %}
{% assign phds_alumni = site.data.people | where: "category", "alumni-phd" %}
{% assign masters_alumni = site.data.people | where: "category", "alumni-masters" %}
{% assign ug_alumni = site.data.people | where: "category", "alumni-ug" %}
<h2>Faculty</h2>
<div id="ryan">
<a href="{{ ryan.webpage |escape }}">
<img class="img-circle" src="{{ryan.headshot}}" alt="{{ryan.display_name}}" width="100" height="100" style="float: left; margin: 10px;"/>
</a>
<a href="{{ryan.webpage |escape}}" style="font-size: 14pt;">Ryan Stutsman</a>
<p>
is Associate Professor in the <a
href="http://www.utah.edu/">University of Utah</a> <a
href="http://www.cs.utah.edu/">School of Computing</a>. His
interests span operating systems and distributed
systems with an emphasis on low-latency distributed storage systems.
Ryan was a Postdoctoral Researcher in the
<a href="http://research.microsoft.com/en-us/groups/db/">databases group</a> at Microsoft
Research, and earned his Ph.D. at Stanford University working
as a part of the
<a href="https://ramcloud.atlassian.net/wiki/spaces/RAM/overview">RAMCloud</a>
and the <a href="https://www.scs.stanford.edu/">Secure Computer Systems</a> labs.
He is the recipient of a NSF Career Award (2018) and VMware Early Career Faculty Award (2019).
</p>
</div>
<br style="clear: both;">
<hr>
<h2>Current Students</h2>
<h3>PhD</h3>
<div class="people">
{% for person in phds %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
<h3>Masters</h3>
<div class="people">
{% for person in masters %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
<h3>Undergraduate</h3>
<div class="people">
{% for person in ugs %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
<hr>
<h2>Alumni</h2>
<h3>PhD</h3>
<div class="people">
{% for person in phds_alumni %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
<h3>Masters</h3>
<div class="people">
{% for person in masters_alumni %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
<h3>Undergraduate</h3>
<div class="people">
{% for person in ug_alumni %}
<div class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
<img class="img-circle" src="{{person.headshot}}" alt="{{person.display_name}}" width="75" height="75" style="display: inline-block"/>
<div class="person">
{{ person.display_name }}<br>
{{ person.role }}<br>
<span style="font-size: 9pt;">{{ person.note }}</span>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>