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 %}
diff --git a/_people/current.md b/_people/current.md
index 58e16cc..dbeaaa3 100644
--- a/_people/current.md
+++ b/_people/current.md
@@ -5,11 +5,11 @@ permalink: /people/
---
Heads
-{% assign details = "picture, role, email, phone, personalPage, website" | split: ", " %}
+{% assign details = "picture, internalRole, email, phone, personalPage, website" | split: ", " %}
{% include list-people.html source=site.data.members.current.head style="card" details=details %}
Members
-{% assign details = "picture, role, email, phone, personalPage, website" | split: ", " %}
+{% assign details = "picture, internalRole, email, phone, personalPage, website" | split: ", " %}
{% include list-people.html source=site.data.members.current.members style="card" details=details sort="name" %}
{%- if site.data.members.current.collaborators.size > 0 -%}
diff --git a/assets/css/custom.css b/assets/css/custom.css
index 985b602..22e5958 100644
--- a/assets/css/custom.css
+++ b/assets/css/custom.css
@@ -333,6 +333,12 @@ li.abstract, li.bio {
margin-bottom: 10px;
}
+.affiliation.more + .affiliation.more {
+ border-top: 2px solid #f5f5f5;
+ margin: 1rem 0 0;
+ padding: 1rem 0 0;
+}
+
ul.publications li,
ul.dissemination li,
ul.events li,