zulip/templates/zerver/terms.html
Robert Hönig 25742c1199 Capitalize s in Terms of service.
A few strings used `Terms of service`
instead of `Terms of Service`. This change
makes the latter form consistent over the repo.
2017-09-06 09:49:19 -07:00

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 %}