mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +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
70 lines
3.0 KiB
Handlebars
70 lines
3.0 KiB
Handlebars
<LinkTo @route="editor.edit" @models={{array this.post.displayName this.post.id}} class="permalink gh-list-data gh-post-list-featured" @title="Edit this post">
|
||
{{#if this.isFeatured}}
|
||
<span data-tooltip="Featured" class="dib pl1 pr1 nr1 nl1">{{svg-jar "star-filled" class="fill-blue w3 h3"}}</span>
|
||
{{/if}}
|
||
</LinkTo>
|
||
|
||
<LinkTo @route="editor.edit" @models={{array this.post.displayName this.post.id}} class="permalink gh-list-data gh-post-list-title" @title="Edit this post">
|
||
<h3 class="gh-content-entry-title">
|
||
{{this.post.title}}
|
||
</h3>
|
||
<p>
|
||
<span class="gh-content-entry-meta">
|
||
By <span class="midgrey-l2 fw5">{{this.authorNames}}</span>
|
||
|
||
{{#if this.primaryTag}}
|
||
in <span class="midgrey-l2 fw5">{{this.primaryTag}}</span>
|
||
{{/if}}
|
||
|
||
{{#if this.isScheduled}}
|
||
– <span class="gh-schedule-time">Scheduled to be published and sent {{gh-format-post-time this.post.publishedAtUTC scheduled=true}}</span>
|
||
{{/if}}
|
||
</span>
|
||
</p>
|
||
</LinkTo>
|
||
|
||
<LinkTo @route="editor.edit" @models={{array this.post.displayName this.post.id}} class="permalink gh-list-data gh-post-list-status" @title="Edit this post">
|
||
<div class="flex items-center">
|
||
{{#if this.isScheduled}}
|
||
<span class="gh-content-status-draft gh-badge nowrap">
|
||
Scheduled
|
||
</span>
|
||
{{/if}}
|
||
|
||
{{#if this.isDraft}}
|
||
<span class="gh-content-status-draft gh-badge gh-badge-purple nowrap">
|
||
Draft
|
||
</span>
|
||
{{/if}}
|
||
|
||
{{#if (and this.isPublished (not this.post.page))}}
|
||
<span class="gh-content-status-published nowrap" title="Post has been sent by email">
|
||
Published
|
||
</span>
|
||
{{/if}}
|
||
|
||
{{#if this.session.user.isOwnerOrAdmin}}
|
||
{{#if (or this.post.email (and this.post.isScheduled this.post.sendEmailWhenPublished))}}
|
||
{{#if (eq this.post.email.status "failed")}}
|
||
<span data-tooltip="Failed to send post by email" class="gh-content-status-emailed error">
|
||
{{svg-jar "send-email" class="stroke-red"}}
|
||
</span>
|
||
{{else}}
|
||
{{#if this.isScheduled}}
|
||
<span data-tooltip="To be sent by email" class="gh-content-status-emailed scheduled">
|
||
{{svg-jar "send-email" class="stroke-green-d2"}}
|
||
</span>
|
||
{{else}}
|
||
<span data-tooltip="Sent by email" class="gh-content-status-emailed">
|
||
{{svg-jar "send-email" class="stroke-midgrey"}}
|
||
</span>
|
||
{{/if}}
|
||
{{/if}}
|
||
{{/if}}
|
||
{{/if}}
|
||
</div>
|
||
</LinkTo>
|
||
|
||
<LinkTo @route="editor.edit" @models={{array this.post.displayName this.post.id}} class="permalink gh-list-data gh-post-list-updated" @title="Edit this post">
|
||
<span class="nowrap">{{gh-format-post-time this.post.updatedAtUTC draft=true}}</span>
|
||
</LinkTo> |