2017-04-20 20:44:49 +02:00
|
|
|
<div class="footer">
|
2017-08-03 22:00:06 +02:00
|
|
|
<section>
|
|
|
|
<h3>{{ _("About Zulip") }}</h3>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/">{{ _("Home") }}</a></li>
|
|
|
|
<li><a href="/why-zulip/">{{ _("Why Zulip") }}</a></li>
|
|
|
|
<li><a href="/features/">{{ _("Features") }}</a></li>
|
|
|
|
{# <li><a href="/plans/">{{ _("Plans & pricing") }}</a></li> #}
|
2017-04-20 20:44:49 +02:00
|
|
|
{% if about_link_disabled %}
|
|
|
|
{% else %}
|
2017-08-03 22:00:06 +02:00
|
|
|
<li><a href="/about/">{{ _("About") }}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h3>{{ _("Help & community") }}</h3>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/help/">{{ _("Help center") }}</a></li>
|
|
|
|
<li><a href="https://twitter.com/zulip/">Twitter</a></li>
|
|
|
|
<li><a href="https://github.com/zulip/zulip/">GitHub</a></li>
|
|
|
|
<li><a href="https://zulip.readthedocs.io/en/latest/">ReadTheDocs</a></li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h3>{{ _("Accounts") }}</h3>
|
|
|
|
<ul>
|
|
|
|
{% if find_team_link_disabled %}
|
|
|
|
{% else %}
|
2017-08-28 23:27:16 +02:00
|
|
|
<li><a href="{{ root_domain_uri }}/find_account/">{{ _("Find account") }}</a></li>
|
2017-08-03 22:00:06 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if open_realm_creation %}
|
2017-08-28 23:01:18 +02:00
|
|
|
<li><a href="{{ root_domain_uri }}/create_realm/">{{ _("New organization") }}</a></li>
|
2017-04-20 20:44:49 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if login_link_disabled %}
|
|
|
|
{% else %}
|
2017-08-03 22:00:06 +02:00
|
|
|
<li><a href="{{ login_url }}">{{ _("Login") }}</a></li>
|
2017-04-20 20:44:49 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if register_link_disabled %}
|
|
|
|
{% elif only_sso %}
|
|
|
|
{% else %}
|
2017-08-03 22:00:06 +02:00
|
|
|
<li><a href="{{ url('register') }}">{{ _("Register") }}</a></li>
|
2017-04-20 20:44:49 +02:00
|
|
|
{% endif %}
|
2017-08-28 23:01:18 +02:00
|
|
|
<li><a href="{{ root_domain_uri }}/terms/">{{ _("Terms of service") }}</a></li>
|
|
|
|
<li><a href="{{ root_domain_uri }}/privacy/">{{ _("Privacy policy") }}</a></li>
|
2017-08-03 22:00:06 +02:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h3>{{ _("Apps & integrations") }}</h3>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/apps/">{{ _("Desktop & mobile apps") }}</a></li>
|
|
|
|
<li><a href="/integrations/">{{ _("Integrations") }}</a></li>
|
|
|
|
{# Interactive bots would go here? #}
|
|
|
|
<li><a href="/api/">REST API</a></li>
|
2017-04-20 20:44:49 +02:00
|
|
|
</ul>
|
2017-08-03 22:00:06 +02:00
|
|
|
</section>
|
2017-04-20 20:44:49 +02:00
|
|
|
</div>
|