Ghost/ghost/email-service/lib/email-templates/partials/latest-posts.hbs
Simon Backx 07ec33fb3a
Added latest posts to email template (#16448)
refs https://github.com/TryGhost/Team/issues/2769

Needs some extra styling and design, this is only a minimal version
behind the feature flag.
2023-03-20 14:30:42 +01:00

28 lines
974 B
Handlebars

<h3>Latest</h3>
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="latest-posts-table">
{{#each latestPosts}}
<tr>
{{#if ../latestPostsHasImages}}
<td width="120"> {{!-- maximum width of image + 20px padding --}}
{{#if featureImage}}
<a href="{{url}}">
<img
src="{{featureImage}}"
{{#if featureImageWidth }}
width="{{featureImageWidth}}"
{{/if}}
/>
</a>
{{/if}}
</td>
{{/if}}
<td>
<h4>
<a href="{{url}}">{{title}}</a>
</h4>
<p><a href="{{url}}">{{publishedAt}}</a></p>
</td>
</tr>
{{/each}}
</table>