mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
landing_page: Restructure bottom navigation.
We recently added a lot of new pages to our top navigation and restructured top-navigation in general. This commit updates the footer to reflect the recent changes to our top navigation.
This commit is contained in:
@@ -1,55 +1,136 @@
|
||||
<div class="footer">
|
||||
<section>
|
||||
<h3>{{ _("About Zulip") }}</h3>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("Product") }}</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>
|
||||
<li><a href="/team/">{{ _("Team") }}</a> and <a href="/history/">{{ _("History") }}</a></li>
|
||||
<li><a href="/apps/">{{ _("Desktop & mobile apps") }}</a></li>
|
||||
<li><a href="/security/">{{ _("Security") }}</a></li>
|
||||
<li><a href="/integrations/">{{ _("Integrations") }}</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h3>{{ _("Help & community") }}</h3>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("Solutions") }}</h3>
|
||||
<ul>
|
||||
<li><a href="/developer-community/">{{ _("Community chat") }}</a></li>
|
||||
<li><a href="/help/">{{ _("Help center") }}</a></li>
|
||||
<li><a href="https://twitter.com/zulip/">Twitter</a> & <a href="https://blog.zulip.org">Blog</a></li>
|
||||
<li><a href="https://github.com/zulip/zulip/">GitHub</a>
|
||||
& <a href="https://zulip.readthedocs.io/en/latest/">ReadTheDocs</a></li>
|
||||
<li><a href="{{ root_domain_uri }}/help/contact-support">{{ _("Support") }}</a></li>
|
||||
<li>
|
||||
<a href="/for/companies/">{{ _("Companies") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/open-source/">{{ _("Open source projects") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/education/">{{ _("Education") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/events/">{{ _("Events and conferences") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/research/">{{ _("Research") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/for/communities/">{{ _("Communities") }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("Customer stories") }}</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/case-studies/tum/">{{ _("Technical University of Munich") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/case-studies/ucsd/">{{ _("University of California San Diego") }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("Accounts") }}</h3>
|
||||
<ul>
|
||||
{% if find_team_link_disabled %}
|
||||
{% else %}
|
||||
<li><a href="{{ root_domain_uri }}/accounts/find">{{ _("Find account") }}</a></li>
|
||||
<li><a href="{{ root_domain_uri }}/accounts/find">{{ _("Find accounts") }}</a></li>
|
||||
{% endif %}
|
||||
{% if open_realm_creation %}
|
||||
<li><a href="{{ root_domain_uri }}/new/">{{ _("New organization") }}</a></li>
|
||||
{% endif %}
|
||||
{% if login_link_disabled %}
|
||||
{% else %}
|
||||
<li><a href="{{ login_url }}">{{ _("Log in") }}</a></li>
|
||||
{% endif %}
|
||||
{% if register_link_disabled %}
|
||||
{% elif only_sso %}
|
||||
{% else %}
|
||||
<li><a href="{{ url('register') }}">{{ _("Sign up") }}</a></li>
|
||||
{% endif %}
|
||||
<li><a href="{{ root_domain_uri }}/terms/">{{ _("Terms of Service") }}</a></li>
|
||||
<li><a href="{{ root_domain_uri }}/privacy/">{{ _("Privacy policy") }}</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h3>{{ _("Apps & integrations") }}</h3>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("For users") }}</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="/help/getting-started-with-zulip">{{ _("Getting started") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/help">{{ _("Help center") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/developer-community/" target=”_blank”>
|
||||
{{ _("Community chat") }}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/help/contact-support">{{ _("Contact support") }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.zulip.com/">{{ _("Blog") }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("For administrators") }}</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/help/getting-your-organization-started-with-zulip">
|
||||
{{ _("Setting up your organization") }}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://zulip.readthedocs.io/en/stable/production/install.html">
|
||||
{{ _("Installing a Zulip server") }}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://zulip.readthedocs.io/en/stable/production/upgrade-or-modify.html">
|
||||
{{ _("Upgrading a Zulip server") }}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://zulip.readthedocs.io/en/latest/production/upgrade-or-modify.html#modifying-zulip">
|
||||
{{ _("Modifying Zulip") }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("For contributors") }}</h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/zulip/zulip/">{{ _("GitHub") }}</a></li>
|
||||
<li>
|
||||
<a href="https://zulip.readthedocs.io/en/latest/overview/contributing.html">
|
||||
{{ _("Contributing to Zulip") }}
|
||||
</a>
|
||||
</li>
|
||||
<li><a href="/developer-community/">{{ _("Development community") }}</a></li>
|
||||
<li>
|
||||
<a href="https://zulip.readthedocs.io/en/latest/translating/translating.html">
|
||||
{{ _("Translation") }}
|
||||
</a>
|
||||
</li>
|
||||
<li><a href="/api/">REST API</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="footer-section">
|
||||
<h3>{{ _("About us") }}</h3>
|
||||
<ul>
|
||||
<li><a href="/team/">{{ _("Team") }}</a> & <a href="/history/">{{ _("History") }}</a></li>
|
||||
<li><a href="/jobs/">{{ _("Jobs") }}</a></li>
|
||||
<li><a href="https://twitter.com/zulip/">Twitter</a></li>
|
||||
<li><a href="https://github.com/sponsors/zulip">{{ _("Sponsor Zulip") }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user