mirror of
https://github.com/zulip/zulip.git
synced 2026-07-18 21:04:19 +08:00
22 lines
587 B
HTML
22 lines
587 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{# Zulip User Documentation. #}
|
|
|
|
{% block portico_content %}
|
|
|
|
<div class="app terms-page">
|
|
<div class="app-main markdown">
|
|
{{ article|render_markdown_path }}
|
|
<div id="footer" class="documentation-footer">
|
|
<hr />
|
|
<p>
|
|
<a href="/help/">Documentation home</a>.
|
|
The Zulip software, including this documentation, is open source! Learn how
|
|
you can contribute <a href="https://zulip.readthedocs.io/en/latest/user-docs.html">here</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|