Skip to content

Latest commit

 

History

History
88 lines (85 loc) · 4.3 KB

File metadata and controls

88 lines (85 loc) · 4.3 KB
layout page
title People
permalink /people/

Head of research centre

{% assign head = site.people | where: "slug", "marco-gaetani" | first %} {% if head %}
{% if head.photo and head.photo != "" %} {{ head.name }} {% else %}
{{ head.name | slice: 0 }}
{% endif %}

{{ head.position }}

{% if head.email and head.email != "" %} {% endif %} {% if head.iuss_page and head.iuss_page != "" %} {% endif %}
{% endif %}

Team members

{% assign all_members = site.people | where_exp: "person", "person.slug != 'marco-gaetani'" | sort: "name" %} {% for person in all_members %}
{% if person.photo and person.photo != "" %} {{ person.name }} {% else %}
{{ person.name | slice: 0 }}
{% endif %}

{{ person.position }}

{% if person.email and person.email != "" %} {% endif %} {% if person.iuss_page and person.iuss_page != "" %} {% endif %}
{% endfor %}

Former members

    {% for person in site.lab.people.former_members %}
  • {{ person.name }}
  • {% endfor %}