mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
c616f56a2a
Refs https://www.notion.so/ghost/Member-activity-improvements-247080c54dac4ebf86d10b38508d2a19
33 lines
1.7 KiB
Handlebars
33 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">
|
|
<h4>{{svg-jar "gift" alt="Gift" class="v-mid"}}What's new</h4>
|
|
</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">View more features →</LinkTo>
|
|
</div>
|
|
</article>
|
|
</section>
|