Files
zulip/templates/zerver/portico-header-dropdown.html
Eeshan Garg 6036524651 landing_page: Restructure top-level navigation.
This commit restructures the top-level navigation on our landing
page using dropdowns in a manner that allows us to advertise some
important pages to our visitors:

- Use cases for companies, open source projects, and communities.
- Miscellaneous pages about the product are now accessible from the
  "Product" dropdown.
- "Resources" are a few key resources our users may want to consult
  if they need help or support.
2021-07-15 10:56:47 -07:00

25 lines
746 B
HTML

<div class="dropdown">
<div class="dropdown-pill">
<img class="header-realm-icon" src="{{ realm_icon }}" alt="{{ _('Go to Zulip') }}"/>
<div class="realm-name">{{ realm_name }}<i class="fa fa-chevron-down"></i></div>
</div>
<ul>
<li>
<a href="/">
<i class="fa fa-home"></i>
Go to app
</a>
</li>
<li class="logout">
<div class="hidden">
<form id="logout_form" action="/accounts/logout/" method="POST">{{ csrf_input }}
</form>
</div>
<a href="#logout">
<i class="fa fa-sign-out"></i>
Log out
</a>
</li>
</ul>
</div>