Ghost/ghost/admin/app/components/dashboard/v5/resources/staff-picks.hbs

35 lines
1.8 KiB
Handlebars
Raw Normal View History

<section class="gh-dashboard5-resource gh-dashboard5-staff-picks" {{did-insert this.load}}>
2022-05-03 13:21:30 +03:00
<article class="gh-dashboard5-resource-box">
2022-05-03 17:26:00 +03:00
<div class="gh-dashboard5-resource-title large">
<h4>Staff picks</h4>
<p>Hand picked stories from around the web, published with Ghost.</p>
2022-04-28 17:48:14 +03:00
</div>
<div class="gh-dashboard5-resource-body">
<div class="gh-dashboard5-list" {{did-insert this.load}}>
{{#if (not (or this.loading this.error))}}
<div class="gh-dashboard5-list-body">
{{#each this.staffPicks as |entry|}}
<div class="gh-dashboard5-list-item">
<a class="gh-dashboard5-list-post permalink" href={{set-query-params entry.link utm_source='ghost'}} target="_blank" rel="noopener noreferrer">
<span class="gh-dashboard5-list-link">
<span>{{entry.title}}</span>
</span>
<div class="gh-dashboard5-resource-secondary">{{entry.creator}}</div>
</a>
</div>
{{else}}
<div class="gh-dashboard5-list-empty">
{{svg-jar "no-data-list"}}
<p>No staff picks yet.</p>
</div>
{{/each}}
</div>
{{/if}}
</div>
</div>
<div class="gh-dashboard5-resource-footer">
2022-05-03 13:21:30 +03:00
<a href="https://twitter.com/ghoststaffpicks" target="_blank" rel="noopener noreferrer">{{svg-jar "twitter-logo"}} <span>Follow on Twitter</span></a>
</div>
</article>
</section>