mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
This replaces the TERMS_OF_SERVICE and PRIVACY_POLICY settings with just a POLICIES_DIRECTORY setting, in order to support settings (like Zulip Cloud) where there's more policies than just those two. With minor changes by Eeshan Garg.
50 lines
2.2 KiB
HTML
50 lines
2.2 KiB
HTML
{% extends "zerver/portico-help.html" %}
|
|
{% set entrypoint = "help" %}
|
|
|
|
{# Zulip user and API documentation. #}
|
|
{% block title %}
|
|
<title>{{ OPEN_GRAPH_TITLE }}</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
<div class="app help terms-page inline-block{% if page_is_help_center %} help-center{% endif %}{% if page_is_api_center %} api-center{% endif %}">
|
|
<div class="sidebar">
|
|
<div class="content">
|
|
{% if not page_is_policy_center %}
|
|
<h1><a href="https://zulip.com" class="no-underline">Zulip homepage</a></h1>
|
|
<h1><a href="{{ doc_root }}" class="no-underline">{{ doc_root_title }} home</a></h1>
|
|
{% endif %}
|
|
|
|
{% if page_is_policy_center %}
|
|
{{ render_markdown_path(sidebar_index, pure_markdown=True) }}
|
|
{% else %}
|
|
{{ render_markdown_path(sidebar_index, api_uri_context) }}
|
|
{% endif %}
|
|
|
|
{% if not page_is_policy_center %}
|
|
<h1 class="home-link"><a href="/" class="no-underline">Back to Zulip</a></h1>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<svg height="32px" class="hamburger" style="enable-background:new 0 0 32 32;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<path d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z"></path>
|
|
</svg>
|
|
|
|
<div class="markdown">
|
|
<div class="content">
|
|
{% if page_is_policy_center %}
|
|
{{ render_markdown_path(article, pure_markdown=True) }}
|
|
{% else %}
|
|
{{ render_markdown_path(article, api_uri_context) }}
|
|
{% endif %}
|
|
|
|
<div id="footer" class="documentation-footer">
|
|
<hr />
|
|
<p>We're here to help! Email us at <a href="mailto:{{ support_email }}">{{ support_email }}</a> with questions, feedback, or feature requests.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|