2013-08-13 12:52:26 +02:00
< div class = "header" >
2016-11-03 21:05:10 +01:00
< nav class = "header-main rightside-userlist" id = "top_navbar" >
2013-08-13 12:52:26 +02:00
< div class = "column-left" >
2016-11-03 21:05:10 +01:00
< a class = "no-style brand" href = "#" >
< div class = "nav-logo" > < / div >
< div class = "company-name" >
zulip
< / div >
< / a >
2014-01-09 16:58:51 +01:00
< / div >
< div class = "column-middle" id = "navbar-middle" >
< div class = "column-middle-inner" >
< div id = "streamlist-toggle" { % if embedded % } style = "visibility: hidden" { % endif % } >
< a href = "#" id = "streamlist-toggle-button" role = "button" > < i class = "icon-vector-reorder" > < / i >
< span id = "streamlist-toggle-unreadcount" > 0< / span >
< / a >
< / div >
< div id = "searchbox" class = "searchbox-rightmargin" >
< div id = "tab_bar" class = "notdisplayed" >
< / div >
< form id = "searchbox_form" class = "form-search navbar-search" >
< div id = "search_arrows" class = "input-append" >
< i class = "icon-vector-search" > < / i >
2016-04-21 08:48:33 +02:00
< input class = "search-query input-block-level" id = "search_query" type = "text" placeholder = "{{ _('Search') }}"
2014-01-09 16:58:51 +01:00
autocomplete="off" />
{# Start the button off disabled since there is no active search #}
< button class = "btn search_button" type = "button" id = "search_exit" disabled = "disabled" > < i class = "icon-vector-remove" > < / i > < / button >
< / div >
< / form >
< / div > {# /searchbox #}
< / div >
< / div >
< div class = "column-right" >
< div id = "userlist-toggle" >
< a href = "#" id = "userlist-toggle-button" role = "button" > < i class = "icon-vector-group" > < / i >
< span id = "userlist-toggle-unreadcount" > 0< / span >
< / a >
< / div >
< div id = "navbar-buttons" { % if embedded % } style = "visibility: hidden" { % endif % } >
2013-01-31 22:32:29 +01:00
< ul class = "nav" role = "navigation" >
2013-07-27 00:00:20 +02:00
< li class = "dropdown actual-dropdown-menu" id = "gear-menu" >
2013-01-31 22:32:29 +01:00
< a id = "settings-dropdown" href = "#" role = "button" class = "dropdown-toggle" data-toggle = "dropdown" >
2013-10-09 00:37:07 +02:00
< i class = "icon-vector-cog" > < / i > < i class = "icon-vector-caret-down settings-dropdown-caret" > < / i >
2013-01-31 22:32:29 +01:00
< / a >
2013-08-15 23:03:28 +02:00
< ul class = "dropdown-menu" role = "menu" aria-labelledby = "settings-dropdown" >
2016-04-21 08:48:33 +02:00
{#
2013-11-04 17:35:07 +01:00
It is quite ingrained in our frontend code that your Home
view is a Bootstrap Nav tab, even though we don't show the tab
anymore
2016-04-21 08:48:33 +02:00
#}
2016-12-15 03:15:52 +01:00
< li class = "invisible" style = "display:none;" > < a href = "#home" data-toggle = "tab" > < / a > < / li >
2017-01-15 20:22:51 +01:00
< li title = "{{ _('Manage streams') }}" >
2016-11-01 22:32:10 +01:00
< a href = "#subscriptions" >
2017-01-15 20:22:51 +01:00
< i class = "icon-vector-exchange" > < / i > {{ _('Manage streams') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Settings') }}" >
2013-01-31 22:32:29 +01:00
< a href = "#settings" data-toggle = "tab" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-wrench" > < / i > {{ _('Settings') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Keyboard shortcuts') }}" >
2013-01-31 22:32:29 +01:00
< a href = "#keyboard-shortcuts" role = "button" data-toggle = "modal" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-question-sign" > < / i > {{ _('Keyboard shortcuts') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Message formatting') }}" >
2013-03-25 22:17:22 +01:00
< a href = "#markdown-help" role = "button" data-toggle = "modal" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-pencil" > < / i > {{ _('Message formatting') }}
2013-03-25 22:17:22 +01:00
< / a >
2013-12-02 22:51:03 +01:00
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Search help') }}" >
2013-12-02 22:51:03 +01:00
< a href = "#search-operators" role = "button" data-toggle = "modal" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-search" > < / i > {{ _('Search help') }}
2013-12-02 22:51:03 +01:00
< / a >
2013-03-25 22:17:22 +01:00
< / li >
2013-01-31 22:32:29 +01:00
< li class = "divider" > < / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Desktop & mobile apps') }}" >
2016-08-14 09:35:41 +02:00
< a href = "/apps" target = "_blank" role = "button" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-desktop" > < / i > {{ _('Desktop & mobile apps') }}
2013-09-17 23:11:00 +02:00
< / a >
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Integrations') }}" >
2016-08-14 03:32:11 +02:00
< a href = "/integrations" target = "_blank" role = "button" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-github" > < / i > {{ _('Integrations') }}
2013-09-17 23:11:00 +02:00
< / a >
< / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('API documentation') }}" >
2016-08-14 09:35:41 +02:00
< a href = "/api" target = "_blank" role = "button" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-sitemap" > < / i > {{ _('API documentation') }}
2013-09-17 23:11:00 +02:00
< / a >
< / li >
< li class = "divider" > < / li >
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Administration') }}" class = "admin-menu-item" >
2013-08-12 23:31:23 +02:00
< a href = "#administration" role = "button" data-toggle = "tab" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-bolt" > < / i > {{ _('Administration') }}
2013-08-12 23:31:23 +02:00
< / a >
< / li >
2013-01-31 22:32:29 +01:00
{% if show_invites %}
2016-12-15 10:11:05 +01:00
< li title = "{% trans %}Invite more users to {{product_name}}.{% endtrans %}}" >
2013-01-31 22:32:29 +01:00
< a href = "#invite-user" role = "button" data-toggle = "modal" >
2016-06-02 21:15:37 +02:00
< i class = "icon-vector-plus-sign" > < / i > {{ _('Invite users') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
{% endif %}
2013-11-14 01:58:36 +01:00
{% if enable_feedback %}
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Feedback') }}" >
2013-06-24 20:45:40 +02:00
< a href = "#feedback" class = "feedback" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-comment" > < / i > {{ _('Feedback') }}
2013-06-24 20:45:40 +02:00
< / a >
< / li >
2013-12-05 18:08:16 +01:00
{% endif %}
2013-01-31 22:32:29 +01:00
< li class = "divider" > < / li >
2013-08-27 21:15:15 +02:00
{% if show_webathena %}
2016-12-15 10:11:05 +01:00
< li title = "{% trans %}Grant {{product_name}} the Kerberos tickets needed to run your Zephyr mirror via Webathena{% endtrans %}" id = "webathena_login_menu" >
2013-08-27 21:15:15 +02:00
< a href = "#webathena" class = "webathena_login" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-bolt" > < / i > {{ _('Link with Webathena') }}
2013-08-27 21:15:15 +02:00
< / a >
< / li >
{% endif %}
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Log out') }}" >
2013-04-02 20:47:18 +02:00
< a href = "#logout" class = "logout_button" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-off" > < / i > {{ _('Log out') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
{% if show_debug %}
2016-12-15 10:11:05 +01:00
< li title = "{{ _('Debug') }}" >
2013-01-31 22:32:29 +01:00
< a href = "#debug" data-toggle = "tab" >
2016-04-21 08:48:33 +02:00
< i class = "icon-vector-barcode" > < / i > {{ _('Debug') }}
2013-01-31 22:32:29 +01:00
< / a >
< / li >
{% endif %}
< / ul >
< / li >
< / ul >
< / div >
2014-01-08 16:12:22 +01:00
< / div >
2016-11-03 21:05:10 +01:00
< / nav >
2013-08-13 12:52:26 +02:00
< / div >