zulip/templates/zerver/for-companies.html

62 lines
2.1 KiB
HTML
Raw Normal View History

2017-07-30 20:14:59 +02:00
{% extends "zerver/portico.html" %}
{% set entrypoint = "landing-page" %}
2017-07-30 20:14:59 +02:00
{% block title %}
<title>Zulip: the best group chat for companies</title>
{% endblock %}
{% block customhead %}
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2017-07-30 20:14:59 +02:00
{% endblock %}
{% block portico_content %}
{% include 'zerver/landing_nav.html' %}
<div class="portico-landing why-page solutions-page">
<div class="hero bg-education">
<div class="bg-dimmer"></div>
<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 class="hero-text">
<a href="/plans">Checkout plans</a> for pricing details.
</div>
<div class="hero-buttons center">
<a href="/new/" class="button">
{{ _('Create organization') }}
</a>
<a href="/accounts/go/?next=/upgrade%23sponsorship" class="button">
{{ _('Request sponsorship') }}
</a>
<a href="https://zulip.readthedocs.io/en/stable/production/install.html" class="button">
{{ _('Self-host Zulip') }}
</a>
</div>
2017-07-30 20:14:59 +02:00
</div>
<div class="main">
<div class="padded-content">
<div class="inner-content markdown">
2017-07-30 20:14:59 +02:00
{{ render_markdown_path('zerver/for/companies.md') }}
</div>
</div>
</div>
<div class="bottom-register-buttons">
<h1>
<a href="/plans">Zulip Standard</a> is discounted for most communities!
</h1>
<div class="hero-buttons center">
<a href="/new/" class="button">
{{ _('Create organization') }}
</a>
<a href="/accounts/go/?next=/upgrade%23sponsorship" class="button">
{{ _('Request sponsorship') }}
</a>
<a href="https://zulip.readthedocs.io/en/stable/production/install.html" class="button">
{{ _('Self-host Zulip') }}
</a>
</div>
</div>
2017-07-30 20:14:59 +02:00
</div>
{% endblock %}