mirror of https://github.com/zulip/zulip.git
39 lines
992 B
HTML
39 lines
992 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% set OPEN_GRAPH_TITLE = 'Team chat with first-class threading' %}
|
|
{% set OPEN_GRAPH_DESCRIPTION = 'Most team chats are overwhelming to keep up with. Zulip takes a different approach.' %}
|
|
|
|
{% block title %}
|
|
<title>The best group chat</title>
|
|
{% endblock %}
|
|
|
|
{% block customhead %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ bundle('landing-page') }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
<div class="portico-landing why-page">
|
|
<div class="hero bg-pycon why-zulip">
|
|
<div class="bg-dimmer"></div>
|
|
<div class="content">
|
|
<h1 class="center">Why Zulip?</h1>
|
|
<p></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main">
|
|
<div class="padded-content">
|
|
<div class="inner-content markdown">
|
|
{{ render_markdown_path('zerver/why-zulip.md') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|