zulip/templates/zerver/privacy.html
Brock Whittaker 94447a0fc4 portico: Center and add box around empty terms and privacy pages.
This adds the white box around the empty terms and privacy page
statements along with putting them in the flex center box.

Fixes: #6309.
2017-08-28 11:46:07 -07:00

23 lines
603 B
HTML

{% extends "zerver/portico.html" %}
{# Privacy policy. #}
{% block portico_content %}
<div class="app terms-page flex">
<div class="app-main terms-page-container white-box">
{% if privacy_policy %}
{{ render_markdown_path(privacy_policy) }}
{% else %}
{% trans %}
This installation of Zulip does not have a configured privacy policy.
Contact this <a href="mailto:{{ support_email }}">server's administrator</a>
if you have any questions.
{% endtrans %}
{% endif %}
</div>
</div>
{% endblock %}