diff --git a/_includes/portrait.html b/_includes/portrait.html
index 9387d6bf..da5c8a9b 100644
--- a/_includes/portrait.html
+++ b/_includes/portrait.html
@@ -33,14 +33,17 @@
{% endif %}
{% if member.role or member.description %}
-
- {% assign type = site.data.types[member.role] %}
- {% include icon.html icon=type.icon %}
- {{ member.description | default: type.description }}
- {% if page.group == "alum" %}
-
LAB ALUMNUS
- {% endif %}
-
+ {% assign show_role = true %}
+ {% if page.url contains "/team/alumni" %}
+ {% assign show_role = false %}
+ {% endif %}
+ {% if show_role %}
+
+ {% assign type = site.data.types[member.role] %}
+ {% include icon.html icon=type.icon %}
+ {{ member.description | default: type.description }}
+
+ {% endif %}
{% endif %}
{% endif %}