2016-06-03 01:02:58 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2019-10-23 07:46:34 +02:00
|
|
|
{% set entrypoint = "landing-page" %}
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2018-07-30 01:11:10 +02:00
|
|
|
{% block customhead %}
|
2021-04-21 00:46:14 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2018-07-30 01:11:10 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2018-07-30 01:11:10 +02:00
|
|
|
{% include 'zerver/landing_nav.html' %}
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2018-07-30 01:11:10 +02:00
|
|
|
<div class="portico-landing why-page">
|
|
|
|
<div class="hero small-hero">
|
|
|
|
<h1 class="center">{{ message }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="padded-content">
|
|
|
|
<div class="inner-content">
|
|
|
|
<p>{{ _('This server does not allow members of the public to create new organizations.') }}</p>
|
2018-07-30 01:22:49 +02:00
|
|
|
<p>
|
2020-06-11 14:37:06 +02:00
|
|
|
{% trans zulip_cloud_link="https://zulip.com",production_install_url="https://zulip.readthedocs.io/en/stable/production/install.html" %}
|
|
|
|
Zulip is open source, so you can <a href="{{ production_install_url}}">install your own Zulip server</a> or create a new organization on
|
|
|
|
<a href="{{ zulip_cloud_link }}">Zulip Cloud</a>
|
2018-07-30 01:22:49 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2018-07-30 01:11:10 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
|
|
|
|
{% endblock %}
|