mirror of https://github.com/zulip/zulip.git
22 lines
610 B
HTML
22 lines
610 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{# Terms of Service. #}
|
|
|
|
{% block portico_content %}
|
|
|
|
<div class="app terms-page flex">
|
|
<div class="app-main terms-page-container white-box">
|
|
{% if terms_of_service %}
|
|
{{ render_markdown_path(terms_of_service) }}
|
|
{% 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>
|
|
|
|
{% endblock %}
|