{% extends "public_base.html" %} {% block title %}Team — {{ SPLENT_APP }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('People'), title=_('Team'), subtitle=_('The people behind the project.')) }} {% endblock %} {% block content %}
{% for role, members in groups.items() %}

{{ role.name }}

{% for m in members %} {% if m.photo %} {{ m.name }} {% else %} {% endif %}

{{ m.name }}

{% if m.position %}

{{ m.position }}{% if m.affiliation %} · {{ m.affiliation }}{% endif %}

{% endif %}
{% endfor %}
{% else %}

{{ _('No team members yet.') }}

{% endfor %}
{% endblock %}