mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
067bfe92a4
refs https://github.com/TryGhost/Toolbox/issues/356 - this is now longer needed now Audit log/History is GA
32 lines
1.6 KiB
Handlebars
32 lines
1.6 KiB
Handlebars
<section class="gh-canvas js-settings-content gh-whats-new-canvas" {{scroll-top}}>
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
<h2 class="gh-whats-new-heading">{{svg-jar "gift"}} What's new?</h2>
|
|
</GhCanvasHeader>
|
|
<section class="view-container">
|
|
<div class="gh-about-container">
|
|
<section class="gh-whats-new gh-about-box" {{did-insert (perform this.whatsNew.updateLastSeen)}}>
|
|
{{#each this.whatsNew.entries as |entry|}}
|
|
<div class="gh-wn-entry" {{scroll-to shouldScroll=(eq entry.slug this.entry)}}>
|
|
<a href="{{entry.url}}">
|
|
<h4>{{moment-format entry.published_at "DD MMMM YYYY"}}</h4>
|
|
<h1>{{entry.title}}</h1>
|
|
{{#if entry.feature_image}}
|
|
<img class="mb5" src={{entry.feature_image}}>
|
|
{{/if}}
|
|
</a>
|
|
<div class="gh-wn-content">
|
|
{{#if entry.custom_excerpt}}
|
|
<p>{{entry.custom_excerpt}}</p>
|
|
<a href={{entry.url}} class="dib fw6 mb6" target="_blank" rel="noopener noreferrer">Read the full post →</a>
|
|
{{else}}
|
|
{{{entry.html}}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
<a class="green" href="https://ghost.org/changelog" target="_blank" rel="noopener noreferrer">See all updates →</a>
|
|
</section>
|
|
</div>
|
|
</section>
|
|
</section>
|