Skip to content

Commit 85fcdf3

Browse files
committed
Updating people
1 parent 04f878e commit 85fcdf3

20 files changed

+380
-182
lines changed

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ plugins:
4141
# - vendor/cache/
4242
# - vendor/gems/
4343
# - vendor/ruby/
44+
#
45+
collections:
46+
people:
47+
output: true

_data/people.yaml

Lines changed: 0 additions & 180 deletions
This file was deleted.

_includes/person_entry.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{% if p['status'] != 'former' %}
2+
<div class="row" style="margin-top: 4em;">
3+
<div class="col-sm-6 col-sm-offset-4">
4+
<h1>{{p['honorific']}} {{p['name']}}</h1>
5+
</div>
6+
</div>
7+
<div class="row">
8+
<div class="col-sm-3 col-sm-offset-1">
9+
<div class="center-cropped-people">
10+
<img src="{{p['avatar']}}" class="img-responsive img-centered current-project-image"/>
11+
</div>
12+
</div>
13+
<div class="col-sm-6">
14+
<ul>
15+
<li><b>Position:</b> {{p['position'] | capitalize }}</li>
16+
{% if p['homepage'] %}
17+
<li><a href="{{p['homepage']}}"><b>Homepage</b></a>
18+
{% endif %}
19+
<li><b>Bio:</b>
20+
<div class="small">
21+
{{p.content | markdownify}}
22+
</div>
23+
</li>
24+
</ul>
25+
</div>
26+
</div>
27+
{% endif %}

_layouts/people.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: base
3+
---
4+
<header>
5+
<div class="header">
6+
<div class="container">
7+
<div class="row">
8+
<h1>People in the Lab</h1>
9+
</div>
10+
</div>
11+
</div>
12+
</header>
13+
14+
<div class="container" style="margin-top: 2em;">
15+
{% assign designations = "faculty, staff, postdoc, grad, undergrad" | split: ", " %}
16+
{% for des in designations %}
17+
{% assign folks = site.people | where:"desig",des %}
18+
{% for p in folks %}
19+
{% include person_entry.html p = p %}
20+
{% endfor %}
21+
{% endfor %}
22+
<div class="row">
23+
<div class="col-sm-6 col-sm-offset-4">
24+
<h1>Former Lab Members</h1>
25+
</div>
26+
</div>
27+
</div>
28+
{% assign former_people = site.people | where:"status","former" %}
29+
{% for p in former_people %}
30+
<div class="row" style="margin-top: 4em;">
31+
<div class="col-sm-6 col-sm-offset-4">
32+
<h1>{{p['honorific']}} {{p['name']}}</h1>
33+
</div>
34+
</div>
35+
<div class="row">
36+
<div class="col-sm-3 col-sm-offset-1">
37+
<div class="center-cropped-people">
38+
<img src="{{p['avatar']}}" class="img-responsive img-centered current-project-image"/>
39+
</div>
40+
</div>
41+
<div class="col-sm-6">
42+
<ul>
43+
<li><b>Position:</b> {{p['position'] | capitalize}}</li>
44+
{% if p['homepage']%}
45+
<li><a href="{{p['homepage']}}"><b>Homepage</b></a>
46+
{% endif %}
47+
<li><b>Bio:</b>
48+
<div class="small">
49+
{{p.content | markdownify}}
50+
</div>
51+
</ul>
52+
</div>
53+
</div>
54+
{% endfor %}

_layouts/person.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: base
3+
---
4+
5+
<header>
6+
<div class="header">
7+
<div class="container">
8+
<div class="row">
9+
<h1>{{page['name']}}</h1>
10+
<h1>{{page['position'] | capitalize }}</h1>
11+
</div>
12+
</div>
13+
</div>
14+
</header>
15+
<div class="container">
16+
<div class="row">
17+
<div class="col-sm-3 col-sm-offset-1">
18+
<img src="{{page['avatar'] | relative_url}}" style="width:200px;height:200px;"/>
19+
</div>
20+
<div class="col-sm-6">
21+
{{ content }}
22+
</div>
23+
</div>
24+
25+
{%if page['projects'].size > 0%}
26+
<div class="row">
27+
<div class="col-sm-9 col-sm-offset-1">
28+
<h2><a href="#projects">Projects</a></h2>
29+
</div>
30+
</div>
31+
{%for proj in projects%}
32+
<div class="row">
33+
<div class="col-sm-3 col-sm-offset-1">
34+
{%if proj['logo'] %}<a href="{{proj['website']}}" class="image-link">
35+
<img src="{{proj['logo']}}" style="width:150px;height:150px;"/>
36+
</a>{%endif%}
37+
</div>
38+
<div class="col-sm-6">
39+
<h3><a href="{{proj['website']}}">{{proj['_id']}}</a></h3>
40+
{%if proj['description'] %}{{proj['description']}}{%endif%}
41+
<ul>{%for pos in proj['team']%}
42+
<li><b>{{pos['position']}}:</b><i>
43+
{{pos['begin_month']}} {{pos['begin_year']}} -
44+
{{pos['end_month']}} {{pos['end_year'] | default: 'present'}}
45+
</i></li>
46+
{%endfor%}</ul>
47+
</div>
48+
</div>
49+
{%endfor%}
50+
{%endif%}
51+
52+
<div class="row">
53+
<div class="col-sm-9 col-sm-offset-1">
54+
<h2><a href="#pubs">Recent Publications</a></h2>
55+
</div>
56+
</div>
57+
</div>

_layouts/projects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h1><a href="{{proj['website']}}">{{proj['_id']}}</a></h1>
3434
{%if proj['team']%}<h3>Team</h3><ul>{%for pos in proj['team']%}
3535
<li><b>{{pos['name']}}:</b> {{pos['position']}}, <i>
3636
{{pos['begin_month']}} {{pos['begin_year']}} -
37-
{{pos['end_month']}} {{pos['end_year'] | default: 'present')}}</i>
37+
{{pos['end_month']}} {{pos['end_year'] | default: 'present'}}</i>
3838
</li>
3939
{%endfor%}</ul>{%endif%}
4040
{%if proj['website']%}

_people/ajulian.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: person
3+
name: Allyson Julian
4+
id: ajulian
5+
avatar:
6+
email: julian3@illinois.edu
7+
homepage: http://allysonjulian.com
8+
position: undergraduate research assistant
9+
honorific:
10+
aka: [Allyson, 'Julian, Allyson']
11+
desig: undergrad
12+
status: former
13+
---
14+
15+
Allyson is an undergraduate at UIUC who likes Linux, bikes, and dogs,
16+
in that order. Getting flavors of Linux to run smoothly on Apple
17+
hardware is her (least|most) favorite part of her day.

_people/alex_lindsay.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: person
3+
name: Alex Lindsay
4+
id: alex_lindsay
5+
avatar: /assets/img/people/alex_lindsay.jpg
6+
email: al007@illinois.edu
7+
homepage:
8+
position: post-doctoral scholar
9+
honorific: Dr.
10+
aka: []
11+
desig: postdoc
12+
status: former
13+
---
14+
15+
Dr. Alex Lindsay did his PhD work at North Carolina State University,
16+
graduating in 2016. Dr. Lindsay joins the DXL in collaboration with
17+
the <a href="http://arfc.github.io">ARFC</a>, where he works with Dr.
18+
Katy Huff. A nuclear engineer by training, Alex is interested in
19+
finite element calculations, reactor design, and running.

_people/dhannasch.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: person
3+
name: David Hannasch
4+
id: dhannasch
5+
avatar:
6+
email: david.a.hannasch@gmail.com
7+
homepage:
8+
position: graduate research assistant
9+
honorific:
10+
aka: [David, 'Hannasch, David']
11+
desig: grad
12+
status: former
13+
---
14+
15+
David Hannasch is a graduate student in mathematics and computer
16+
science. He is working on ray tracing through unusual domains, with
17+
initial applications to geophysics (spherical domains) and planned
18+
applications to astrophysics. BS, UNLV, Mathematical Sciences; BS,
19+
UNLV, Computer Science.

0 commit comments

Comments
 (0)