Skip to content
Snippets Groups Projects
team_card_mini_non_member.html 476 B
Newer Older
Erxleben, Fredo's avatar
Erxleben, Fredo committed
{% comment %}
    This is a template for the mini version of a team card for non-members.
    It contains the name and a dummy picture of the person.
{% endcomment %}

{% if include.person_name %}
<span class="team-card-mini">
    <i class="fas fa-user"></i>&nbsp;
    <span class="name">{{ include.person_name }}</span>
</span>
{% else %}
<!--
        WARNING: team_card_mini_non_members.html was included,
        but parameter person_id was not defined
    -->
{% endif %}