portico: Add initial why zulip page.

This commit is contained in:
Rishi Gupta 2017-07-18 20:45:45 -07:00 committed by Tim Abbott
parent a24ea56c53
commit 9782911aca
4 changed files with 71 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{% extends "zerver/portico.html" %}
{% block title %}
<title>The best group chat</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 apps">
<div class="main">
<div class="padded-content headline">
<h1 class="center">{% trans %}Why Zulip?{% endtrans %}</h1>
</div>
<div class="padded-content">
<div class="inner-content">
{{ 'zerver/why-zulip.md'|render_markdown_path }}
</div>
</div>
</div>
</div>
{% endblock %}

View File

@ -0,0 +1,35 @@
Zulip is not just a “better Slack”, in the same way that iPods were not just
“better CD players”. Zulips topic-based threading changes what is possible
in chat. If you havent seen Zulip in action, log on to our developers
server at <https://chat.zulip.org>, or check out our short screencast
(coming soon) on topics and threading.
## Asynchronous matters
Zulips threading model allows for long-running conversations to co-exist
with real time chat. This allows remote team members, part-time contractors,
internal clients, and others who arent going to be on your chat full-time
to participate effectively.
## Usability matters
Email is clunky for real-time communication. A thread with even 100 messages
feels cluttered and slow, whereas real-time chat conversations (on any
platform) regularly exceed that. Typing notifications, emoji reactions,
keyboard shortcuts, and blazingly fast clients make Zulip a daily
pleasure. Usability is important; if people dont like a communications
tool, they just won't use it.
## Zulip changes the way you operate
The Zulip project currently has over 30 full-time engineers, working from 10
different countries. Outside of one-on-one conversations, Zulip doesnt have
a single phone or video-based meeting. Zulip also has 0 internal mailing
lists, and 0 internal email discussions.
Threaded conversations mean that all stakeholders can see and respond to
every message, just like in meetings and email. But unlike meetings, Zulip
conversations dont require coordinating busy schedules, or hour long
commitments from folks that just need a 5 minute update. And unlike email, a
lively discussion of 300 Zulip messages is just as easy to digest and
respond to as an in-person conversation.

View File

@ -37,6 +37,7 @@ class DocPageTest(ZulipTestCase):
self._test('/apps/', 'Appsolutely')
self._test('/features/', 'Talk about multiple topics at once')
self._test('/hello/', 'productive group chat')
self._test('/why-zulip/', 'all stakeholders can see and')
self._test('/for/open-source/', 'for open source projects')
self._test('/integrations/',
'Over 60 native integrations.',

View File

@ -151,6 +151,7 @@ i18n_urls = [
url(r'^hello/$', TemplateView.as_view(template_name='zerver/hello.html'), name='landing-page'),
url(r'^new-user/$', RedirectView.as_view(url='/hello', permanent=True)),
url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')),
url(r'^why-zulip/$', TemplateView.as_view(template_name='zerver/why-zulip.html')),
url(r'^for/open-source/$', TemplateView.as_view(template_name='zerver/for-open-source.html')),
url(r'^find_my_team/$', zerver.views.registration.find_my_team, name='zerver.views.registration.find_my_team'),
url(r'^authors/$', zerver.views.users.authors_view, name='zerver.views.users.authors_view'),