--- layout: team title: Team permalink: /team/ redirect_from: - /people/ - /doc/QubesDevelopers/ - /wiki/QubesDevelopers/ ---

Core Team

{% for team in site.data.team %} {% if team.type == "core" %}
{% 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 %}
{% endif %} {% endfor %}
Join the team!

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.

{% assign emeritus_total = 0 %} {% for team in site.data.team %} {% if team.type == "emeritus" %} {% assign emeritus_total = emeritus_total | plus:1 %} {% endif %} {% endfor %} {% assign emeritus_half = emeritus_total | divided_by:2 %} {% assign emeritus_shown = 0 %}
{% 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.

{% assign community_total = 0 %} {% for team in site.data.team %} {% if team.type == "community" %} {% assign community_total = community_total | plus:1 %} {% endif %} {% endfor %} {% assign community_half = community_total | divided_by:2 %} {% assign community_shown = 0 %}
{% 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 %}