0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/app/templates/application.hbs

24 lines
891 B
Handlebars
Raw Normal View History

{{#gh-app showSettingsMenu=showSettingsMenu}}
<a class="sr-only sr-only-focusable" href="#gh-main">Skip to main content</a>
2015-05-20 16:37:06 +01:00
{{gh-alerts notify="topNotificationChange"}}
2015-05-20 16:37:06 +01:00
<div class="gh-viewport {{if autoNav 'gh-autonav'}} {{if showSettingsMenu 'settings-menu-expanded'}} {{if showMobileMenu 'mobile-menu-expanded'}}">
{{#unless signedOut}}
{{gh-nav-menu open=autoNavOpen onMouseEnter="openAutoNav" toggleMaximise="toggleAutoNav" openModal="openModal" closeMobileMenu="closeMobileMenu"}}
{{/unless}}
{{#gh-main onMouseEnter="closeAutoNav" data-notification-count=topNotificationCount}}
{{outlet}}
{{/gh-main}}
2015-05-20 16:37:06 +01:00
{{gh-notifications}}
{{gh-content-cover onClick="closeMenus" onMouseEnter="closeAutoNav"}}
2015-05-21 11:03:24 -06:00
{{outlet "modal"}}
{{outlet "settings-menu"}}
</div>{{!gh-viewport}}
{{/gh-app}}