mirror of https://github.com/zulip/zulip.git
17 lines
287 B
HTML
17 lines
287 B
HTML
|
{% extends "zerver/portico.html" %}
|
||
|
|
||
|
{# Terms of service. #}
|
||
|
|
||
|
{% block portico_content %}
|
||
|
|
||
|
<div class="app terms-page">
|
||
|
<div class="app-main terms-page-container">
|
||
|
|
||
|
{% if terms_of_service %}
|
||
|
{{ terms_of_service|render_markdown_path }}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|