2017-07-30 20:14:59 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>Zulip: the best group chat for companies</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' %}
|
|
|
|
|
2017-08-10 22:53:42 +02:00
|
|
|
<div class="portico-landing why-page">
|
2017-07-30 20:14:59 +02:00
|
|
|
<div class="hero">
|
|
|
|
<h1 class="center">{% trans %}The best chat for workplaces{% endtrans %}</h1>
|
|
|
|
<p>Make better use of your managers' time, integrate your remote workers, and replace your low-content meetings</p>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="padded-content">
|
|
|
|
<div class="inner-content">
|
|
|
|
{{ render_markdown_path('zerver/for/companies.md') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|