2017-07-19 05:45:45 +02:00
|
|
|
|
{% extends "zerver/portico.html" %}
|
2019-10-23 07:46:34 +02:00
|
|
|
|
{% set entrypoint = "landing-page" %}
|
2017-07-19 05:45:45 +02:00
|
|
|
|
|
2023-03-23 00:05:36 +01:00
|
|
|
|
{% set PAGE_TITLE = "Why Zulip? Efficient communication with organized team chat." %}
|
2019-07-11 05:59:52 +02:00
|
|
|
|
|
2022-09-05 17:24:21 +02:00
|
|
|
|
{% set PAGE_DESCRIPTION = "Make better decisions, faster with chat that’s
|
|
|
|
|
organized right. Follow the discussions that matter to you, easily and
|
|
|
|
|
efficiently, in real time or asynchronously." %}
|
2017-07-19 05:45:45 +02:00
|
|
|
|
|
|
|
|
|
{% block customhead %}
|
2021-04-21 00:46:14 +02:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2017-07-19 05:45:45 +02:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
|
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
|
|
2024-11-18 13:39:10 +01:00
|
|
|
|
<div class="portico-landing why-page">
|
2018-11-01 08:05:40 +01:00
|
|
|
|
<div class="hero bg-pycon why-zulip">
|
|
|
|
|
<div class="bg-dimmer"></div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<h1 class="center">Why Zulip?</h1>
|
2023-03-23 00:05:36 +01:00
|
|
|
|
<p>Efficient communication with organized team chat.</p>
|
2018-11-01 08:05:40 +01:00
|
|
|
|
</div>
|
2024-10-17 23:05:02 +02:00
|
|
|
|
<div class="hero-buttons center">
|
|
|
|
|
<a href="/new/" class="button">
|
|
|
|
|
{{ _('Create organization') }}
|
|
|
|
|
</a>
|
|
|
|
|
<a href="/request-demo/" class="button">
|
|
|
|
|
{{ _('Get a demo') }}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2018-08-08 22:34:32 +02:00
|
|
|
|
</div>
|
2018-11-01 08:05:40 +01:00
|
|
|
|
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
2018-05-09 21:57:55 +02:00
|
|
|
|
<div class="main">
|
2018-08-08 22:42:03 +02:00
|
|
|
|
<div class="padded-content">
|
2019-07-22 19:22:56 +02:00
|
|
|
|
<div class="inner-content markdown">
|
2022-08-16 13:20:04 +02:00
|
|
|
|
{{ render_markdown_path('corporate/why-zulip.md') }}
|
2017-07-19 05:45:45 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
|
|
|
|
<div class="why-zulip">
|
|
|
|
|
<div class="discounts-section">
|
|
|
|
|
<header>
|
2023-03-23 00:05:36 +01:00
|
|
|
|
<h2>Learn how Zulip can help your organization collaborate effectively!</h2>
|
2021-07-28 19:48:46 +02:00
|
|
|
|
</header>
|
|
|
|
|
<div class="register-buttons">
|
2023-03-23 04:25:08 +01:00
|
|
|
|
<a href="/for/business/" class="register-now button">Business</a>
|
|
|
|
|
<a href="/for/open-source/" class="register-now button">Open source</a>
|
|
|
|
|
<a href="/for/education/" class="register-now button">Education</a>
|
|
|
|
|
<a href="/for/events/" class="register-now button">Events and Conferences</a>
|
|
|
|
|
<a href="/for/research/" class="register-now button">Research</a>
|
|
|
|
|
<a href="/for/communities/" class="register-now button">Communities</a>
|
2021-07-28 19:48:46 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2017-07-19 05:45:45 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|