zulip/templates/zerver/documentation_main.html

32 lines
1.5 KiB
HTML

{% extends "zerver/portico-help.html" %}
{% set entrypoint = "help" %}
{# Zulip User and API Documentation. #}
{% 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_class }}">
<div class="content">
<h1><a href="{{ doc_root }}" class="no-underline">Home</a></h1>
{{ render_markdown_path(sidebar_index, api_uri_context) }}
<h1 class="home-link"><a href="/" class="no-underline">Back to Zulip</a></h1>
</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">
{{ render_markdown_path(article, api_uri_context) }}
<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 %}