Skip to content

Latest commit

 

History

History
executable file
·
67 lines (57 loc) · 1.89 KB

people.md

File metadata and controls

executable file
·
67 lines (57 loc) · 1.89 KB
title permalink
People
/people/

{% assign people_sorted = site.people | sort: 'title' %} {% assign role_array = "pi|postdoc|gradstudent|undergrad|researchstaff|visiting|others|alumni" | split: "|" %}

{% for role in role_array %}

{% assign people_in_role = people_sorted | where: 'position', role %}

{% if people_in_role.size == 0 %} {% continue %} {% endif %}

{% if role == 'postdoc' %}

Postdoctoral Fellows

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'gradstudent' %}

Graduate Students

{% elsif role == 'undergrad' %}

Undergraduate Students

{% elsif role == 'others' %} {% elsif role == 'researchstaff' %}

Research Staff

{% elsif role == 'visiting' %}

Visiting Scholars

{% elsif role == 'others' %}

Honorary Members

{% elsif role == 'alumni' %}

Alumni

{% endif %}

{% if role != 'alumni' %}

{% for profile in people_sorted %} {% if profile.position contains role %}

{% if profile.avatar %} {% else %} {% endif %} {{ profile.name }}

{% endif %} {% endfor %}

{% else %}


Name Time at SwarmLab Where they went
Sharachchandra Bhat 2021-2022 Tesla

{% endif %} {% endfor %}