Ghost/ghost/admin/app/templates/application.hbs
Kevin Ansfield 1fb2b49a5b Remove unused top notification count functionality
no issue

- in a very old iteration of the admin design we needed a data attribute containing the number of notifications in order to add extra spacing in the styles. This hasn't been necessary for a long time and there are easier ways to do it now than using observers.
2017-11-24 11:15:59 +00:00

25 lines
667 B
Handlebars

{{#gh-app showSettingsMenu=ui.showSettingsMenu}}
{{#gh-skip-link anchor=".gh-main"}}Skip to main content{{/gh-skip-link}}
{{gh-alerts}}
<div class="gh-viewport {{if ui.autoNav 'gh-autonav'}} {{if ui.showSettingsMenu 'settings-menu-expanded'}} {{if ui.showMobileMenu 'mobile-menu-expanded'}}">
{{#if showNavMenu}}
{{gh-nav-menu open=ui.autoNavOpen}}
{{/if}}
{{#gh-main onMouseEnter=(action "closeAutoNav" target=ui)}}
{{outlet}}
{{/gh-main}}
{{gh-notifications}}
{{gh-content-cover}}
{{gh-mobile-nav-bar}}
</div>{{!gh-viewport}}
{{/gh-app}}
{{ember-load-remover}}