mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
753da0231f
- Adds gh-view-title component to implement mobile menu button for titles on any page - Refactors the `content-cover` out into the application template - Fix various z-index issues with content-cover and gh-alert - Move `.settings-menu-expanded` application view state from body to `.gh-viewport` - Unify nav menu / mobile menu actions and code
15 lines
593 B
Handlebars
15 lines
593 B
Handlebars
<header class="view-header">
|
|
{{#gh-view-title openMobileMenu="openMobileMenu"}}Navigation{{/gh-view-title}}
|
|
<section class="view-actions">
|
|
<button type="button" class="btn btn-blue" {{action "save"}}>Save</button>
|
|
</section>
|
|
</header>
|
|
|
|
<section class="view-container">
|
|
<form id="settings-navigation" class="gh-blognav js-gh-blognav" novalidate="novalidate">
|
|
{{#each navigationItems as |navItem|}}
|
|
{{gh-navitem navItem=navItem baseUrl=blogUrl addItem="addItem" deleteItem="deleteItem" updateUrl="updateUrl"}}
|
|
{{/each}}
|
|
</form>
|
|
</section>
|