mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
38a26e8760
refs: https://github.com/TryGhost/Team/issues/1531 - charts now have basic working loading states, could be improved though - trying out staff picks description and layout tweaks - lots of small design tweaks based on feedback
31 lines
942 B
Handlebars
31 lines
942 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}}
|
|
|
|
{{#if this.areNewslettersEnabled}}
|
|
<Dashboard::V5::Charts::Engagement />
|
|
{{/if}}
|
|
|
|
<Dashboard::V5::Charts::Recents />
|
|
|
|
<div class="gh-dashboard5-split">
|
|
<Dashboard::V5::Resources::Resources />
|
|
<Dashboard::V5::Resources::WhatsNew />
|
|
</div>
|
|
<div class="gh-dashboard5-split">
|
|
<Dashboard::V5::Resources::Newsletter />
|
|
<Dashboard::V5::Resources::StaffPicks />
|
|
</div>
|
|
<Dashboard::V5::Resources::Community />
|
|
{{/if}}
|
|
</section>
|
|
|
|
<Dashboard::V5::Prototype::ControlPanel />
|