2016-06-03 01:02:58 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
2018-07-30 01:11:10 +02:00
|
|
|
{% block customhead %}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{{ render_bundle('landing-page') }}
|
|
|
|
|
|
|
|
{% 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>
|
|
|
|
<p>{% trans %}Zulip is open source, so you can install your own Zulip server by following the instructions on
|
|
|
|
<a href="https://www.zulip.org/">www.zulip.org</a>{% endtrans %}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
|
|
|
|
{% endblock %}
|