{% assign found = '' -%}
{% for person in site.people -%}
{% if person.person_id == con -%}
{% assign found = person.name -%}
{{person.name}}
{% if person.email and person.email != '' -%}
({{person.email}})
{% endif -%}
{% if person.web and person.web != '' -%}
{% endif %}
{% if person.mastodon and person.mastodon != '' -%}
{% endif -%}
{% if person.matrix and person.matrix != '' -%}
{% endif -%}
{% if person.gitlab and person.gitlab != '' -%}
{% endif %}
{% endif -%}
{% endfor -%}
{% if found == nil or found == '' -%}
{{con}}
{% endif -%}