mirror of https://github.com/zulip/zulip.git
131 lines
5.8 KiB
HTML
131 lines
5.8 KiB
HTML
<div class="navbar navbar-fixed-top" id="top_navbar">
|
|
<div class="navbar-inner">
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="span3 hidden-phone">
|
|
<a class="brand" href="#">Humbug</a>
|
|
</div>
|
|
<div class="span7" id="navbar-middle">
|
|
<a class="brand skinny-user-gravatar visible-phone" href="#"
|
|
title="{{user_profile.full_name}} - {{user_profile.user.email}}">
|
|
<img class="img-rounded gravatar-profile"
|
|
src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=30" />
|
|
</a>
|
|
<div id="searchbox">
|
|
<form id="searchbox_form" class="form-search navbar-search">
|
|
<div id="search_arrows">
|
|
<input class="search-query" id="search_query" type="text" placeholder="Search…"
|
|
autocomplete="off">
|
|
<button class="btn search_button" type="button" id="search_exit"><i class="icon-remove"></i></button>
|
|
</div>
|
|
</form>
|
|
</div>{# /searchbox #}
|
|
|
|
<div id="navbar-buttons">
|
|
<ul class="nav" role="navigation">
|
|
{# stuff that gets visible in skinny mode #}
|
|
<li class="visible-phone" title="New stream message">
|
|
<a href="#" onclick="compose.set_mode('stream'); return false;">
|
|
<i class="icon-bullhorn"></i>
|
|
</a>
|
|
</li>
|
|
<li class="visible-phone" title="New private message">
|
|
<a href="#" onclick="compose.set_mode('private'); return false;">
|
|
<i class="icon-user"></i>
|
|
</a>
|
|
</li>
|
|
{# /stuff that gets visible in skinny mode #}
|
|
<li class="dropdown" id="gear-menu">
|
|
<a id="settings-dropdown" href="#" role="button" class="dropdown-toggle" data-toggle="dropdown">
|
|
<span class="glyphicons cogwheel"><i></i></span><b class="caret"></b>
|
|
</a>
|
|
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="settings-dropdown">
|
|
<li title="Home">
|
|
<a href="#home" data-toggle="tab" onclick="narrow.restore_home_state();">
|
|
<i class="icon-home"></i> Home
|
|
</a>
|
|
</li>
|
|
<li title="Streams">
|
|
<a href="#subscriptions" data-toggle="tab">
|
|
<i class="icon-globe"></i> Streams
|
|
</a>
|
|
</li>
|
|
<li title="Settings">
|
|
<a href="#settings" data-toggle="tab">
|
|
<i class="icon-wrench"></i> Settings
|
|
</a>
|
|
</li>
|
|
<li title="Keyboard shortcuts">
|
|
<a href="#keyboard-shortcuts" role="button" data-toggle="modal">
|
|
<i class="icon-info-sign"></i> Keyboard shortcuts
|
|
</a>
|
|
</li>
|
|
<li class="dropdown-submenu">
|
|
<a href="#" id="font_size_menu_link">
|
|
<i class="icon-font"></i> Font size
|
|
</a>
|
|
<ul class="dropdown-menu" id="font_size_menu">
|
|
{# Entries filled in by JavaScript #}
|
|
</ul>
|
|
</li>
|
|
<li class="divider"></li>
|
|
<li title="Feedback">
|
|
<a href="#feedback" onclick="compose.start('private', { 'private_message_recipient': 'feedback@humbughq.com' });">
|
|
<i class="icon-comment"></i> Feedback
|
|
</a>
|
|
</li>
|
|
{% if show_invites %}
|
|
<li title="Invite users to Humbug">
|
|
<a href="#invite-user" role="button" data-toggle="modal">
|
|
<i class="icon-gift"></i> Invite users to Humbug
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li class="divider"></li>
|
|
<li title="Log out">
|
|
<a href="/accounts/logout">
|
|
<i class="icon-off"></i> Log out
|
|
</a>
|
|
</li>
|
|
{% if show_debug %}
|
|
<li title="Debug">
|
|
<a href="#debug" data-toggle="tab">
|
|
<i class="icon-barcode"></i> Debug
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if show_activity %}
|
|
<li title="Activity">
|
|
<a href="/activity" target="_blank">
|
|
<i class="icon-eye-open"></i> Activity
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="alert alert_sidebar alert-error home-error-bar" id="connection-error">
|
|
<strong>Can't receive messages</strong>
|
|
— retrying soon. <a class="cursor_pointer" onclick="restart_get_updates({dont_block: true});">Try now</a>.
|
|
</div>
|
|
<div class="alert alert_sidebar alert-error home-error-bar" id="zephyr-mirror-error">
|
|
<strong>Messages you send are not being mirrored to MIT
|
|
zephyr</strong> — Please check
|
|
that <a href="/zephyr">you are running the Zephyr mirror
|
|
script</a>. Once you've corrected this
|
|
issue, you can <a class="cursor_pointer"
|
|
onclick="restart_get_updates({dont_block: true});">click
|
|
here</a> to update this alert.
|
|
</div>
|
|
<div class="alert alert_sidebar alert-error home-error-bar" id="reloading-application">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="navbar-spacer"></div>
|