Skip to content
Snippets Groups Projects
team_card_mini.html 942 B
Newer Older
Erxleben, Fredo's avatar
Erxleben, Fredo committed
{% 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">
    <!-- a href="{{ person.id | prepend: 'members/' | relative_url }}" -->
Erxleben, Fredo's avatar
Erxleben, Fredo committed
        {% 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 %}
    <!-- /a -->
Erxleben, Fredo's avatar
Erxleben, Fredo committed
</span>
{% else %}
<!--
        WARNING: team_card_mini.html was included,
        but parameter person was not defined
    -->
{% endif %}