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
|
|
|
|
2022-09-05 16:12:21 +02:00
|
|
|
{% set PAGE_TITLE = 'Team chat with first-class threading' %}
|
|
|
|
{% set PAGE_DESCRIPTION = 'Most team chats are overwhelming to keep up with. Zulip takes a different approach.' %}
|
2019-07-11 05:59:52 +02:00
|
|
|
|
2017-07-19 05:45:45 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>The best group chat</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% 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' %}
|
|
|
|
|
2017-08-10 22:53:42 +02: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>
|
|
|
|
</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>
|
|
|
|
<h2>Learn how Zulip can help your organization!</h2>
|
|
|
|
</header>
|
|
|
|
<div class="register-buttons">
|
2021-12-09 21:18:59 +01:00
|
|
|
<a href="/for/business" class="register-now button">Business</a>
|
2021-07-28 19:48:46 +02:00
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-19 05:45:45 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|