0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/client/app/templates/application.hbs
Paul Adam Davis 1cbb58d80d Re-implement top notification position styles
References #5071

- Re-implements the previously broken top notification styles
- Moves the top notification outlet outside the `<main>` to ease styling (we have several nested position fixed/absolute boxes that make this tough - moving the outlet makes it easier)
2015-04-07 18:36:03 +01:00

17 lines
414 B
Handlebars

<a class="sr-only sr-only-focusable" href="#gh-main">Skip to main content</a>
{{#unless hideNav}}
{{partial "navbar"}}
{{/unless}}
{{gh-notifications location="top" notify="topNotificationChange"}}
<main id="gh-main" class="viewport" role="main" data-notification-count={{topNotificationCount}}>
{{outlet}}
</main>
{{gh-notifications location="bottom"}}
{{outlet "modal"}}
{{outlet "settings-menu"}}