mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
8502ebb96a
refs: https://github.com/TryGhost/Team/issues/1631 Co-authored-by: James Morris <moreofmorris@users.noreply.github.com>
34 lines
1.7 KiB
Handlebars
34 lines
1.7 KiB
Handlebars
<section class="gh-dashboard-resource gh-dashboard-whats-new" {{did-insert this.load}}>
|
|
<article class="gh-dashboard-resource-box">
|
|
<div class="gh-dashboard-resource-title is-large has-border">
|
|
<h4>What's new</h4>
|
|
<p>All the latest improvements.</p>
|
|
</div>
|
|
<div class="gh-dashboard-resource-body">
|
|
<div class="gh-dashboard-list {{if this.whatsNew.hasNew "has-new"}}">
|
|
{{#if (not (or this.loading this.error))}}
|
|
<div class="gh-dashboard-list-body">
|
|
{{#each this.entries as |entry|}}
|
|
<div class="gh-dashboard-list-item">
|
|
<LinkTo class="gh-dashboard-list-post" @route="whatsnew" @query={{hash entry=entry.slug}}>
|
|
<span class="gh-dashboard-list-link">
|
|
<span>{{entry.title}}</span>
|
|
</span>
|
|
<div class="gh-dashboard-resource-secondary">{{moment-format entry.published_at "D MMM YYYY"}}</div>
|
|
</LinkTo>
|
|
</div>
|
|
{{else}}
|
|
<div class="gh-dashboard-list-empty">
|
|
<p>No new features yet.</p>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
<div class="gh-dashboard-resource-footer">
|
|
<LinkTo @route="whatsnew" @query={{hash entry=null}} class="green">See more features →</LinkTo>
|
|
</div>
|
|
</article>
|
|
</section>
|