Newer
Older
{% comment %}
This is a template for the mini version of a team card.
It contains the name and a picture of the person, if available.
{% endcomment %}
{% assign person = include.person %}
{% if person %}
<span class="team-card-mini">
{% if person.image %}
{% assign image-url = site.directory.images
| append: "members/"
| append: person.image %}
<img src="{{ image-url | strip | relative_url }}" alt="Picture of {{ person.name }}">
{% else %}
<i class="fas fa-user"></i>
{% endif %}
{% include team_card/name.html person=person %}
{% include team_card/team_member_associate.html person=person %}
</span>
{% else %}
<!--
WARNING: team_card_mini.html was included,
but parameter person was not defined
-->
{% endif %}