mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 13:31:39 +03:00
737ea3f65e
Closes #3568 - Deleted html placeholders in client - Added new grunt task, buildAboutPage, which 1)creates -contributors.hbs partial and 2) downloads contributor avatars - buildAboutPage is called by anything that does an emberTemplates task - Removed unused code from ghostpaths
24 lines
774 B
Handlebars
24 lines
774 B
Handlebars
<header class="page-header">
|
|
<a class="menu-button" href="#"><span class="sr-only">Menu</span></a>
|
|
<h2 class="page-title">Settings</h2>
|
|
</header>
|
|
|
|
<div class="page-content">
|
|
<nav class="settings-menu">
|
|
<ul>
|
|
{{#unless session.user.isAuthor}}
|
|
{{#unless session.user.isEditor}}
|
|
{{gh-activating-list-item route="settings.general" title="General" classNames="settings-menu-general"}}
|
|
{{/unless}}
|
|
|
|
{{gh-activating-list-item route="settings.users" title="Users" classNames="settings-menu-users"}}
|
|
|
|
{{/unless}}
|
|
|
|
{{gh-activating-list-item route="settings.about" title="About" classNames="settings-menu-about"}}
|
|
</ul>
|
|
</nav>
|
|
|
|
{{outlet}}
|
|
</div>
|