mirror of https://github.com/zulip/zulip.git
32 lines
917 B
HTML
32 lines
917 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>Zulip: the best group chat for working groups and communities</title>
|
|
{% endblock %}
|
|
|
|
{% block customhead %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ render_bundle('landing-page') }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
<div class="portico-landing why-page">
|
|
<div class="hero">
|
|
<h1 class="center">{% trans %}The best chat for working groups and communities{% endtrans %}</h1>
|
|
<p>Make good use of your users' time, and engage your community with thoughtful, organized discussion</p>
|
|
</div>
|
|
<div class="main">
|
|
<div class="padded-content">
|
|
<div class="inner-content">
|
|
{{ render_markdown_path('zerver/for/working-groups-and-communities.md') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|