mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
09435ecf76
no issue Keeps component JS backing files and template files in the same directory which avoids hunting across directories when working with components. Also lets you see all components when looking at one directory, whereas previously template-only or js-only components may not have been obvious without looking at both directories. - ran [codemod](https://github.com/ember-codemods/ember-component-template-colocation-migrator/) for app-level components - manually moved in-repo-addon component templates in `lib/koenig-editor` - removed all explicit `layout` imports as JS/template associations are now made at build-time removing the need for them - updated `.embercli` to default to new flat component structure
23 lines
825 B
Handlebars
23 lines
825 B
Handlebars
{{#if this._isSaving}}
|
|
Saving...
|
|
{{else if (or this.post.isPublished this.post.pastScheduledTime)}}
|
|
Published
|
|
{{#if (or (eq this.post.email.status "submitting") (eq this.post.email.status "submitting"))}}
|
|
and sending to {{pluralize this.post.email.emailCount "member"}}
|
|
{{else if (eq this.post.email.status "submitted")}}
|
|
and sent to {{pluralize this.post.email.emailCount "member"}}
|
|
{{/if}}
|
|
{{else if this.post.isScheduled}}
|
|
{{#if this.countdown}}
|
|
<time datetime="{{this.post.publishedAtUTC}}" class="ml1 green f8" data-test-schedule-countdown>
|
|
Scheduled to be published {{if this.post.sendEmailWhenPublished "and sent"}} {{this.countdown}}.
|
|
</time>
|
|
{{else}}
|
|
Scheduled
|
|
{{/if}}
|
|
{{else if this.post.isNew}}
|
|
New
|
|
{{else}}
|
|
Draft
|
|
{{/if}}
|