mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
68704db01a
Closes #556 * New Ghost Logo Icon * New Lightning Icon for plugins screen * Remove old Ghost Logo Icon * Moved #ghost to .ghost-logo to clean up conflicts with editor, previously fixed with dodgy overnesting
26 lines
1.4 KiB
Handlebars
26 lines
1.4 KiB
Handlebars
|
|
<header id="global-header" class="navbar">
|
|
<a class="ghost-logo" href="http://vip.tryghost.org" data-off-canvas="left"><span class="hidden">Ghost</span></a>{{! TODO: Change this to actual Ghost homepage }}
|
|
<nav id="global-nav" role="navigation">
|
|
<ul id="main-menu" >
|
|
{{#each adminNav}}
|
|
<li class="{{navClass}}{{#if selected}} active{{/if}}"><a href="/ghost{{path}}">{{name}}</a></li>
|
|
{{/each}}
|
|
|
|
<li id="usermenu" class="subnav">
|
|
<a href="#" data-toggle="ul" class="dropdown">
|
|
<img class="avatar" src="{{#if currentUser.profile}}{{currentUser.profile}}{{else}}/public/img/user.jpg{{/if}}" alt="Avatar" />
|
|
<span class="name">{{#if currentUser.name}}{{currentUser.name}}{{else}}Ghost{{/if}} v{{version}}</span>
|
|
</a>
|
|
<ul class="overlay">
|
|
<li class="usermenu-profile"><a href="/ghost/settings/user">Your Profile</a></li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-help"><a href="#">Help / Support</a></li>
|
|
<li class="usermenu-shortcuts"><a href="#">Keyboard Shortcuts</a></li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-signout"><a href="/signout/">Sign Out</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|