2021-07-20 20:45:23 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
{% set entrypoint = "landing-page" %}
|
|
|
|
|
2022-09-05 16:12:21 +02:00
|
|
|
{% set PAGE_TITLE = 'The Zulip development community' %}
|
|
|
|
{% set PAGE_DESCRIPTION = 'Join the Zulip community to contribute, ask questions, or provide feedback to the creators of Zulip.' %}
|
2021-07-20 20:45:23 +02:00
|
|
|
|
|
|
|
{% block title %}
|
2021-12-01 19:48:10 +01:00
|
|
|
<title>The Zulip development community</title>
|
2021-07-20 20:45:23 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block customhead %}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
|
|
|
|
|
2021-07-26 06:58:45 +02:00
|
|
|
<div class="portico-landing why-page no-slide solutions-page">
|
2021-07-20 20:45:23 +02:00
|
|
|
<div class="hero bg-pycon">
|
|
|
|
<div class="bg-dimmer"></div>
|
|
|
|
<div class="content">
|
2021-12-01 19:48:10 +01:00
|
|
|
<h1 class="center">{% trans %}The Zulip development community{% endtrans %}</h1>
|
2021-07-20 20:45:23 +02:00
|
|
|
</div>
|
2021-07-26 06:58:45 +02:00
|
|
|
<div class="hero-text">
|
|
|
|
Join today! The buttons below provide customized stream subscriptions.
|
|
|
|
</div>
|
|
|
|
<div class="hero-buttons center">
|
|
|
|
<a href="https://chat.zulip.org/join/t5crtoe62bpcxyisiyglmtvb/" class="button">
|
|
|
|
{{ _('Join as a user') }}
|
|
|
|
</a>
|
|
|
|
<a href="https://chat.zulip.org/join/wnhv3jzm6afa4raenedanfno/" class="button">
|
|
|
|
{{ _('Join as a self-hoster') }}
|
|
|
|
</a>
|
2021-07-26 07:38:03 +02:00
|
|
|
<a href="https://chat.zulip.org/join/npzwak7vpmaknrhxthna3c7p/" class="button">
|
2021-07-26 06:58:45 +02:00
|
|
|
{{ _('Join as a contributor') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-07-20 20:45:23 +02:00
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="padded-content">
|
|
|
|
<div class="inner-content markdown">
|
2022-08-16 12:34:43 +02:00
|
|
|
{{ render_markdown_path('corporate/development-community.md') }}
|
2021-07-20 20:45:23 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-26 06:58:45 +02:00
|
|
|
|
|
|
|
<div class="feature-end">
|
|
|
|
<div class="bottom-register-buttons">
|
|
|
|
<h1>
|
|
|
|
Join today!
|
|
|
|
</h1>
|
|
|
|
<div class="hero-buttons center">
|
|
|
|
<a href="https://chat.zulip.org/join/t5crtoe62bpcxyisiyglmtvb/" class="button">
|
|
|
|
{{ _('Join as a user') }}
|
|
|
|
</a>
|
|
|
|
<a href="https://chat.zulip.org/join/wnhv3jzm6afa4raenedanfno/" class="button">
|
|
|
|
{{ _('Join as a self-hoster') }}
|
|
|
|
</a>
|
2021-07-26 07:38:03 +02:00
|
|
|
<a href="https://chat.zulip.org/join/npzwak7vpmaknrhxthna3c7p/" class="button">
|
2021-07-26 06:58:45 +02:00
|
|
|
{{ _('Join as a contributor') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-20 20:45:23 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|