Ghost/ghost/admin/app/templates/application.hbs

49 lines
1.2 KiB
Handlebars
Raw Normal View History

<GhApp>
<GhSkipLink @anchor=".gh-main">Skip to main content</GhSkipLink>
2015-05-20 18:37:06 +03:00
<GhAlerts />
2015-05-20 18:37:06 +03:00
<div class="gh-viewport {{if this.ui.showMobileMenu 'mobile-menu-expanded'}}">
{{#if this.showNavMenu}}
<GhNavMenu />
{{/if}}
<main class="gh-main {{this.ui.mainClass}}" role="main">
{{outlet}}
{{#if this.showBilling}}
<GhBillingModal @billingWindowOpen={{this.billing.billingWindowOpen}} />
{{/if}}
</main>
2015-05-20 18:37:06 +03:00
<GhNotifications />
<GhContentCover />
2015-05-21 20:03:24 +03:00
<GhMobileNavBar />
<GhWhatsNew />
</div>{{!gh-viewport}}
{{#if this.customViews.showFormModal}}
<GhFullscreenModal
@modal="custom-view-form"
@close={{this.customViews.toggleFormModal}}
@modifier="action narrow"
/>
{{/if}}
2021-03-04 12:12:25 +03:00
{{#if this.settings.accentColor}}
<style>
.koenig-editor__editor a:not([class]) {
color: {{this.adjustedAccentColor}};
}
.koenig-editor__editor blockquote {
border-left: 0.25rem solid {{this.adjustedAccentColor}};
}
2021-03-04 12:12:25 +03:00
</style>
{{/if}}
</GhApp>
<EmberLoadRemover />