Skip to content
Snippets Groups Projects
entity.html 1.13 KiB
{% assign found =  '' -%}
{% for person in site.people -%}
	{% if person.person_id == con -%}
		{% assign found =  person.name -%}
		{{person.name}} 
		{% if person.email and person.email != '' -%}
			<span class="email-for-print"> ({{person.email}})</span>
			<a class="personlink" href="mailto:{{person.email}}"><span class="fa fa-envelope"></span></a>
      	{% endif -%}
      	{% if person.web and person.web != '' -%}
        	<a class="personlink" href="{{ person.web }}"><span class="fa fa-globe"></span></a>
      	{% endif %}
      	{% if person.mastodon and person.mastodon != '' -%}
        	<a class="personlink" href="{{ person.mastodon }}"><span class="fa fa-brands fa-mastodon"></span></a>
      	{% endif -%}
      	{% if person.matrix and person.matrix != '' -%}
	        <a class="navlink" href="{{ person.matrix }}"><span class="fa fa-matrix-org"></span></a>
	    {% endif -%}
      	{% if person.gitlab and person.gitlab != '' -%}
        	<a class="navlink" href="{{ person.gitlab }}"><span class="fa fa-brands fa-gitlab"></span></a>
      	{% endif %}
	{% endif -%}
{% endfor -%}
{% if found == nil or found == '' -%}
	{{con}}
{% endif -%}