mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
69d4852a6d
closes #4260 - Adds "tags" route inside of the settings routes. - Adds this route to router.js - Links the route from the settings.hbs template - Adds demo tags html in tag.hbs template - Adds flag for tagsUI
29 lines
1.2 KiB
Handlebars
29 lines
1.2 KiB
Handlebars
<header class="page-header">
|
|
<button class="menu-button js-menu-button" {{action "toggleGlobalMobileNav"}}><span class="sr-only">Menu</span></button>
|
|
<h2 class="page-title">Settings</h2>
|
|
</header>
|
|
|
|
<div class="page-content">
|
|
<nav class="settings-nav js-settings-menu">
|
|
<ul>
|
|
{{#unless session.user.isAuthor}}
|
|
{{#unless session.user.isEditor}}
|
|
{{gh-activating-list-item route="settings.general" title="General" classNames="settings-nav-general icon-settings"}}
|
|
{{/unless}}
|
|
|
|
{{! Whilst tag management is still in development only show tags button if there if tagsUI is true in config.js --}}
|
|
{{#if showTags}}
|
|
{{gh-activating-list-item route="settings.tags" title="Tags" classNames="settings-nav-tags icon-tag"}}
|
|
{{/if}}
|
|
|
|
{{gh-activating-list-item route="settings.users" title="Users" classNames="settings-nav-users icon-users"}}
|
|
|
|
{{/unless}}
|
|
|
|
{{gh-activating-list-item route="settings.about" title="About" classNames="settings-nav-about icon-pacman"}}
|
|
</ul>
|
|
</nav>
|
|
|
|
{{outlet}}
|
|
</div>
|