diff --git a/_includes/list-people.html b/_includes/list-people.html index 75537ef..bf4d496 100644 --- a/_includes/list-people.html +++ b/_includes/list-people.html @@ -248,22 +248,23 @@ {% endif %}
{% if person.name and person.surname %}

{{ person.name }} {{ person.surname }}

{% endif %} - {% if role and details contains "role" %}

{{ role }}

{% endif %} {% if type %}

{{ type }}

{% endif %} {% if details contains "unit" or details contains "institution" or details contains "place" %} {% for affiliation in person.affiliations %}
+ {% if affiliation.role and details contains "role" %}

{{ affiliation.role }}

{% endif %} {% if affiliation.unit and details contains "unit" %}

{{ affiliation.unit }}

{% endif %} {% if affiliation.institution and details contains "institution" %}

{{ affiliation.institution }}

{% endif %} {% if affiliation.place and details contains "place" %}

{{ affiliation.place }}

{% endif %}
{% endfor %} - {% elsif details contains "internalUnit" %} + {% elsif details contains "internalRole" or details contains "internalUnit" %} {% for affiliation in person.affiliations %} {% if affiliation.institution == "Fondazione Bruno Kessler" %} {% if affiliation.unit == "Security & Trust" or affiliation.unit == "Center for Cybersecurity" %}
-

{{ affiliation.unit }}

+ {% if details contains "internalRole" %}

{{ affiliation.role }}

{% endif %} + {% if details contains "internalUnit" %}

{{ affiliation.unit }}

{% endif %}
{% endif %} {% endif %} @@ -271,7 +272,6 @@ {% endif %} {% if institution %}

{{ institution }}

{% endif %} {% if formerRole %}

{{ formerRole }}

{% endif %} - {% if currentRole and details contains "currentRole" %}

{{ currentRole }}

{% endif %} {% if additionalInfo.topic and details contains "topic" %}

{{ additionalInfo.topic }}

{% endif %} {% if thesis.title and details contains "thesis" %}

Thesis: {{ thesis.title }}

{% endif %}