mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
The corporate "app" is not a full-fledged Django app, but it has a urls.py and a templates directory. This commit creates the app and moves the jobs pages into it. Localserver deployments will not see any of the corporate code. (imported from commit 35889c3cf92329258c30741fdfa564769a4fac1a)
26 lines
877 B
HTML
26 lines
877 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block portico_content %}
|
|
<h1 class="jobs-page-header">Jobs at Zulip</h1>
|
|
|
|
<p class="lead jobs-lead">About us</p>
|
|
<p>We're an experienced startup team that previously founded and
|
|
built a company that was acquired by Oracle in 2011. There are
|
|
currently eight of us, largely engineers from MIT, and we get
|
|
really excited about making a great experience that delights
|
|
customers. We're a top-notch product team.</p>
|
|
|
|
<p>We are well-funded and our investors include a half dozen
|
|
entrepreneurs who have each built companies worth >$1
|
|
billion.</p>
|
|
|
|
<p>Now we're building the group conversation product you've always
|
|
dreamed of.</p>
|
|
|
|
<p class="lead jobs-lead">Open positions</p>
|
|
|
|
<ul>
|
|
<li><a href="/jobs/lead-designer">Lead Designer</a></li>
|
|
</ul>
|
|
{% endblock %}
|