2016-05-11 19:01:53 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2019-10-23 07:46:34 +02:00
|
|
|
{% set entrypoint = "landing-page" %}
|
2016-05-11 19:01:53 +02:00
|
|
|
|
2017-09-05 10:14:02 +02:00
|
|
|
{# Terms of Service. #}
|
2016-05-11 19:01:53 +02:00
|
|
|
|
2017-10-07 01:34:00 +02:00
|
|
|
{% block customhead %}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-05-11 19:01:53 +02:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2017-10-07 01:34:00 +02:00
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
|
|
|
|
<div class="portico-landing why-page">
|
|
|
|
<div class="hero small-hero">
|
|
|
|
<h1 class="center">{% trans %}Terms of Service{% endtrans %}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="padded-content">
|
2019-07-22 19:22:56 +02:00
|
|
|
<div class="inner-content markdown">
|
2017-10-07 01:34:00 +02:00
|
|
|
{% if terms_of_service %}
|
2018-08-09 02:46:32 +02:00
|
|
|
{{ render_markdown_path(terms_of_service, pure_markdown=True) }}
|
2017-10-07 01:34:00 +02:00
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
|
|
|
This installation of Zulip does not have a configured terms of service.
|
|
|
|
Contact this <a href="mailto:{{ support_email }}">server's administrator</a>
|
|
|
|
if you have any questions.
|
|
|
|
{% endtrans %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-24 16:42:13 +01:00
|
|
|
</div>
|
2016-05-11 19:01:53 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|