mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
516a7c3701
refs: https://github.com/TryGhost/Team/issues/1531 - added in published dates if newsletters not enabled - also tried out a state to remove engagement if members not enabled
31 lines
989 B
Handlebars
31 lines
989 B
Handlebars
<section class="gh-dashboard5-layout" {{did-insert this.onInsert}}>
|
|
{{#if this.isLoading }}
|
|
<GhLoadingSpinner />
|
|
{{else}}
|
|
{{#if this.areMembersEnabled}}
|
|
{{#if this.hasPaidTiers}}
|
|
<Dashboard::V5::Charts::Overview />
|
|
{{/if}}
|
|
<Dashboard::V5::Charts::Anchor />
|
|
|
|
{{#if this.areNewslettersEnabled}}
|
|
<Dashboard::V5::Charts::Engagement />
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
<Dashboard::V5::Charts::Recents />
|
|
|
|
<div class="gh-dashboard5-split gh-dashboard5-box is-secondary">
|
|
<Dashboard::V5::Resources::Resources />
|
|
<Dashboard::V5::Resources::Newsletter />
|
|
</div>
|
|
<div class="gh-dashboard5-split">
|
|
<Dashboard::V5::Resources::StaffPicks />
|
|
<Dashboard::V5::Resources::WhatsNew />
|
|
<Dashboard::V5::Resources::Community />
|
|
</div>
|
|
{{/if}}
|
|
</section>
|
|
|
|
<Dashboard::V5::Prototype::ControlPanel />
|