Skip to content

Latest commit

 

History

History
96 lines (93 loc) · 3.42 KB

people.md

File metadata and controls

96 lines (93 loc) · 3.42 KB
layout title nav-menu description order
page
People
true
iCyPhy Center Personnel
1

People

Principal Investigators

{% assign group = site.people | where_exp: "item", "item.role == 'pi'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}

Research Staff

{% assign group = site.people | where_exp: "item", "item.role == 'staff'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}

Industrial Fellows

{% assign group = site.people | where_exp: "item", "item.role == 'vif'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}

Postdoctoral Researchers

{% assign group = site.people | where_exp: "item", "item.role == 'postdoc'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}

Graduate Students

{% assign group = site.people | where_exp: "item", "item.role == 'grad'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}

Visiting Students

{% assign group = site.people | where_exp: "item", "item.role == 'vstud'" | sort:"last_name"%} {% assign rows = group.size | divided_by: 4.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 4 %}
{% for post in group limit:4 offset:offset %} {% include person_entry.html %} {% endfor %}
{% endfor %}