2022-04-06 20:11:46 +03:00
|
|
|
<div class="gh-dashboard5-list" {{did-insert this.loadPosts}}>
|
2022-04-11 19:17:31 +03:00
|
|
|
<div class="gh-dashboard5-list-header">
|
|
|
|
<div class="gh-dashboard5-list-title">Recent posts</div>
|
|
|
|
<div class="gh-dashboard5-list-title">Sends</div>
|
|
|
|
<div class="gh-dashboard5-list-title">Opens</div>
|
2022-04-06 20:11:46 +03:00
|
|
|
</div>
|
2022-04-08 19:49:11 +03:00
|
|
|
|
2022-04-06 20:11:46 +03:00
|
|
|
<div class="gh-dashboard5-list-body">
|
|
|
|
{{#each this.posts as |post|}}
|
|
|
|
<div class="gh-dashboard5-list-item">
|
|
|
|
<LinkTo class="gh-dashboard5-list-post permalink" @route="editor.edit" @models={{array post.displayName post.id}}>
|
2022-04-12 12:18:10 +03:00
|
|
|
{{post.title}}
|
2022-04-06 20:11:46 +03:00
|
|
|
</LinkTo>
|
2022-04-11 19:17:31 +03:00
|
|
|
<span>231</span>
|
|
|
|
<span>65%</span>
|
2022-03-24 20:14:51 +03:00
|
|
|
</div>
|
2022-04-06 20:11:46 +03:00
|
|
|
{{else}}
|
|
|
|
<div class="gh-dashboard5-list-empty">
|
|
|
|
<p>No published posts yet.</p>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
<div class="gh-dashboard5-list-footer">
|
|
|
|
<LinkTo @route="posts" @query={{reset-query-params "posts"}}>See all posts →</LinkTo>
|
|
|
|
</div>
|
2022-03-24 20:14:51 +03:00
|
|
|
</div>
|