Skip to content

Latest commit

 

History

History
executable file
·
83 lines (71 loc) · 2.45 KB

File metadata and controls

executable file
·
83 lines (71 loc) · 2.45 KB
title People
permalink /people/

Lab Members

The Embodied Computation Group is a multidisciplinary team bringing together expertise in computational modelling, psychophysics, neuroimaging, and clinical research. We are united by our interest in understanding how visceral and embodied processes shape cognition, emotion, and perception.

{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|postdoc|gradstudent|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 Researchers

{% elsif role == 'pi' %}

Principal Investigator

{% elsif role == 'gradstudent' %}

PhD Students

{% elsif role == 'researchstaff' %}

Research Staff

{% elsif role == 'visiting' %}

Visiting Scholars

{% elsif role == 'others' %}

Collaborators

{% 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 %}

{% assign alumni_sorted = people_sorted | where: 'position', 'alumni' | sort: 'joined' | reverse %}

{% for profile in alumni_sorted %} {% endfor %}
Who are they When were they here Where they went
{{ profile.name }} {{ profile.former_role }} ({{ profile.joined }}-{{ profile.left }}) {{ profile.current_position }}

{% endif %} {% endfor %}