mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
51ed2868f7
Fixes #3078 - new "users" resource, with matching controller and template - fetching real data from /ghost/api/v0.1/users/ - updated "user" route to accept a :slug as a URL parameter - updated labels everywhere (from "user" to "users") - updated "profile" link to header to point to proper "users/:slug" route - updated core/client/.jshintrc to recognize moment as a valid global function - adjusted DOM selector used in Casper to properly identify the new screen - adding "slug" as a new property of the user data used during the Casper functional tests
31 lines
1.7 KiB
Handlebars
31 lines
1.7 KiB
Handlebars
<header id="global-header" class="navbar">
|
|
<a class="ghost-logo" {{bind-attr href=ghostPaths.blogRoot title=ghostPaths.blogRoot}} data-off-canvas="left">
|
|
<span class="hidden">Ghost</span>
|
|
</a>
|
|
<nav id="global-nav" role="navigation">
|
|
<ul id="main-menu" >
|
|
{{gh-activating-list-item route="posts" title="Content" classNames="content"}}
|
|
{{gh-activating-list-item route="editor.new" title="New Post" classNames="editor"}}
|
|
{{gh-activating-list-item route="settings" title="Settings" classNames="settings"}}
|
|
|
|
<li id="usermenu" class="usermenu subnav">
|
|
{{#gh-popover-button popoverName="user-menu" tagName="a" href="#" classNames="dropdown"}}
|
|
{{#if session.user.image}}
|
|
<img class="avatar" {{bind-attr src="session.user.image"}} alt="Avatar" />
|
|
{{else}}
|
|
<img class="avatar" src="/shared/img/user-image.png" alt="Avatar" />
|
|
{{/if}}
|
|
<span class="name">{{session.user.name}}</span>
|
|
{{/gh-popover-button}}
|
|
{{#gh-popover tagName="ul" classNames="overlay" name="user-menu" closeOnClick="true"}}
|
|
<li class="usermenu-profile">{{#link-to "settings.users.user" session.user.slug}}Your Profile{{/link-to}}</li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
|
|
<li class="divider"></li>
|
|
<li class="usermenu-signout"><a {{ action 'invalidateSession' }}>Sign Out</a></li>
|
|
{{/gh-popover}}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|