mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
54eda5c03c
closes #3018 - split clientold mobile interactions into their respective Ember routes/views - create PostsView and SettingsView with mobile interactions - place interactions for the publish bar into ApplicationRoute on init
27 lines
747 B
Handlebars
27 lines
747 B
Handlebars
<aside class="settings-sidebar" role="complementary">
|
|
<header>
|
|
<h1 class="title">Settings</h1>
|
|
</header>
|
|
<nav class="settings-menu">
|
|
<ul>
|
|
{{#view "item-view" tagName="li" class="general"}}
|
|
{{#link-to "settings.general"}}General{{/link-to}}
|
|
{{/view}}
|
|
|
|
{{#view "item-view" tagName="li" class="users"}}
|
|
{{#link-to "settings.user"}}User{{/link-to}}
|
|
{{/view}}
|
|
|
|
{{#if showApps}}
|
|
{{#view "item-view" tagName="li" class="apps"}}
|
|
{{#link-to "settings.apps"}}Apps{{/link-to}}
|
|
{{/view}}
|
|
{{/if}}
|
|
</ul>
|
|
</nav>
|
|
</aside>
|
|
|
|
<section class="settings-content active">
|
|
{{outlet}}
|
|
</section>
|