2022-04-26 13:29:44 +03:00
|
|
|
<section class="gh-dashboard5-resource gh-dashboard5-whats-new" {{did-insert this.load}}>
|
|
|
|
<article class="gh-dashboard5-resource-box">
|
|
|
|
<div class="gh-dashboard5-resource-title">
|
2022-04-28 17:48:14 +03:00
|
|
|
<h4>What's new</h4>
|
|
|
|
<p>All the latest changes and improvements.</p>
|
2022-04-26 13:29:44 +03:00
|
|
|
</div>
|
|
|
|
<div class="gh-dashboard5-resource-body">
|
|
|
|
{{#if (not (or this.loading this.error))}}
|
|
|
|
<div class="gh-dashboard5-list {{if this.whatsNew.hasNew "has-new"}}">
|
|
|
|
<div class="gh-dashboard5-list-body">
|
|
|
|
{{#each this.entries as |entry|}}
|
|
|
|
<div class="gh-dashboard5-list-item">
|
|
|
|
<LinkTo @route="whatsnew" @query={{hash entry=entry.slug}}>
|
|
|
|
<span class="gh-dashboard5-list-link">{{entry.title}}</span>
|
|
|
|
<div class="gh-dashboard5-resource-secondary">{{moment-format entry.published_at "D MMM YYYY"}}</div>
|
|
|
|
{{!-- {{#if entry.custom_excerpt}}
|
|
|
|
<p>{{entry.custom_excerpt}}</p>
|
|
|
|
{{/if}} --}}
|
|
|
|
</LinkTo>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2022-04-22 13:42:51 +03:00
|
|
|
</div>
|
2022-04-26 13:29:44 +03:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="gh-dashboard5-resource-footer">
|
|
|
|
<LinkTo @route="whatsnew" @query={{hash entry=null}} class="green">See more features →</LinkTo>
|
|
|
|
</div>
|
2022-04-22 13:42:51 +03:00
|
|
|
</article>
|
|
|
|
</section>
|