zulip/templates/zerver/team.html

143 lines
5.8 KiB
HTML
Raw Normal View History

{% extends "zerver/portico.html" %}
{% block title %}
<title>Zulip: the best group chat for open source projects</title>
{% endblock %}
{% block customhead %}
{{ super() }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% stylesheet 'portico' %}
{% stylesheet 'landing-page' %}
{{ render_bundle('landing-page') }}
{% endblock %}
{% block portico_content %}
{% include 'zerver/landing_nav.html' %}
<div class="portico-landing why-page no-slide">
<div class="hero bg-pycon drone">
<div class="bg-dimmer"></div>
<div class="content">
2017-10-31 20:27:56 +01:00
<h1 class="center">The Zulip team</h1>
<p>Learn about the people behind Zulip!</p>
</div>
</div>
<div class="main">
<div class="team">
2017-10-31 20:27:56 +01:00
<h1>The core team at Kandra Labs</h1>
<p>
2017-10-31 20:27:56 +01:00
Over 350 people have contributed to the Zulip
codebase, from high school students to 30 year
industry veterans, from people launching new careers
to people looking for community.
The <a href="https://zulipchat.com/plans">commercial
services for Zulip</a> are offered by Kandra Labs.
Kandra Labs is funded by an NSF SBIR grant, and
employs most of the Zulip core team. Meet the
leadership below!
</p>
2017-10-31 20:27:56 +01:00
<div class="team-profiles">
<!-- Tim -->
<div class="profile bdfl">
<img class="profile-picture" src="/static/images/team/tim.png" alt="" />
<div class="profile-information">
<div class="profile-name">Tim Abbott</div>
<div class="profile-role">Founder and project leader</div>
<div class="profile-description">
<p>
Before Zulip, Tim was a founder and CTO of
Ksplice, which provided rebootless linux
kernel updates (a feat many previously thought
impossible) to over 100,000 production
servers. He was also the youngest ever
Architect at Oracle, one of the most senior
engineers at Dropbox and has been active in
the open source community for over a
decade. Tim has three degrees from MIT, and
lives in San Francisco with his wife and
daughter.
</p>
</div>
</div>
</div>
<!-- Rishi -->
<div class="profile">
<img class="profile-picture" src="/static/images/team/rishi.png" alt="" />
<div class="profile-name">Rishi Gupta</div>
<div class="profile-role">Product</div>
</div>
<!-- Brock -->
<div class="profile">
<img class="profile-picture" src="/static/images/team/brock.jpg" alt="" />
<div class="profile-name">Brock Whittaker</div>
<div class="profile-role">Web</div>
</div>
<!-- Steve -->
<div class="profile">
<img class="profile-picture" src="/static/images/team/steve.png" alt="" />
<div class="profile-name">Steve Howell</div>
<div class="profile-role">Full Stack</div>
</div>
<!-- Greg -->
<div class="profile">
<img class="profile-picture" src="/static/images/team/greg.png" alt="" />
<div class="profile-name">Greg Price</div>
<div class="profile-role">Infrastructure</div>
</div>
<!-- Boris -->
<div class="profile">
<img class="profile-picture" src="/static/images/team/boris.jpg" alt="" />
<div class="profile-name">Boris Yankov</div>
<div class="profile-role">Mobile</div>
</div>
</div>
<!-- Contributors -->
<h1>Our amazing community</h1>
<p>
While the team at Kandra Labs provides important
leadership, Zulip is built by an incredible
distributed community of developers from all
around the world. You can read about
the <a href="/history">project's history</a> if
you want to learn more about Zulip's origins.
</p>
<p>
Here, we recognize the top contributors to the
Zulip server project on GitHub! Zulip's community
in unusual in how many people outside the core
team have made major contributions to the project.
</p>
<div class="contributors">
{% for person in data %}
<div class="person">
<a href="https://github.com/{{ person.name }}" target="_blank" class="no-underline">
<div class="avatar">
<img class="avatar_img" src="{{ person.avatar }}" alt="{{ _('Avatar') }}" />
</div>
<div class='info'>
<b>@{{ person.name }}</b><br />
{{ person.commits }} commits
</div>
</a>
</div>
{% endfor %}
</div>
<p class="last-updated">
Statistic last updated: {{ date }}
</p>
</div>
</div>
</div>
{% endblock %}