4.7 KiB
4.7 KiB
layout | title | permalink | redirect_from | |||
---|---|---|---|---|---|---|
team | Team | /team/ |
|
Core Team
{% if team.picture %}
{% else %}
{% endif %}
{% assign name_array = team.name | split:" " %}
{{team.name}}
{{team.role}} {% if team.email %} Email {% endif %} {% if team.website %} Website {% endif %} {% if team.twitter %} Twitter {% endif %}
{% if team.fingerprint %}
{{team.fingerprint}}
{% endif %}
{% if team.pgp_key %}
{{name_array[0]}}'s PGP Key
{% endif %}
Emeritus
Emeriti are honorary members of the Qubes team who previously contributed to the project in a central way but who are no longer currently active.
{% for team in site.data.team %}
{% if team.type == "emeritus" %}
{% if emeritus_shown < emeritus_half %}
{% include team-simple.html %}
{% elsif emeritus_shown == emeritus_half %}
{% include team-simple.html %}
{% else %}
{% include team-simple.html %}
{% endif %}
{% assign emeritus_shown = emeritus_shown | plus:1 %}
{% endif %}
{% endfor %}
Community Contributors
Qubes would not be where it is today without the input of the many users, testers, and developers of all skill levels who have come together to form this thriving community. The community's discussions take place primarily on the Qubes mailing lists.
{% for team in site.data.team %}
{% if team.type == "community" %}
{% if community_shown < community_half %}
{% include team-simple.html %}
{% elsif community_shown == community_half %}
{% include team-simple.html %}
{% else %}
{% include team-simple.html %}
{% endif %}
{% assign community_shown = community_shown | plus:1 %}
{% endif %}
{% endfor %}