mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
31 lines
1.1 KiB
Handlebars
31 lines
1.1 KiB
Handlebars
<header class="modal-header gh-wn-header" data-test-modal="whats-new">
|
|
<span>{{svg-jar "gift" class="w5 h5"}}</span>
|
|
<h2>What's new?</h2>
|
|
</header>
|
|
|
|
<button class="close gh-wn-close" href title="Close" {{on "click" this.closeModal}}>
|
|
{{svg-jar "close"}}
|
|
</button>
|
|
|
|
<div class="modal-body gh-wn-content">
|
|
{{#each this.whatsNew.entries as |entry|}}
|
|
<div class="gh-wn-entry">
|
|
<h4>{{moment-format entry.published_at "DD MMMM YYYY"}}</h4>
|
|
<h1 class="f1 fw6 ma0 pa0 mb3">{{entry.title}}</h1>
|
|
{{#if entry.feature_image}}
|
|
<img class="mb5" src={{entry.feature_image}}>
|
|
{{/if}}
|
|
{{#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>
|
|
{{/each}}
|
|
</div>
|
|
<div class="modal-footer gh-wn-footer">
|
|
<a href={{this.whatsNew.changelogUrl}} target="_blank" rel="noopener noreferrer">
|
|
See all past updates
|
|
</a>
|
|
</div> |