Ghost/ghost/email-service/lib/email-templates/partials/latest-posts.hbs

40 lines
1.9 KiB
Handlebars
Raw Normal View History

{{#each latestPosts}}
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="latest-post">
<a href="{{url}}">
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
{{#if ../latestPostsHasImages}}
{{#if featureImage}}
<td width="140" class="latest-post-img"> {{!-- maximum width of image + 20px padding --}}
<img
src="{{featureImage}}"
{{#if featureImageWidth }}
width="{{featureImageWidth}}"
{{/if}}
{{#if featureImageHeight }}
height="{{featureImageHeight}}"
{{/if}}
/>
</td>
<td width="100%" class="latest-post-img-mobile">
<img
src="{{featureImage}}"
width="100%"
height="240"
/>
</td>
{{/if}}
{{/if}}
<td valign="top" align="left" class="latest-post-title">
<h4>{{title}}</h4>
<p>{{publishedAt}}</p>
</td>
</tr>
</table>
</a>
</td>
</tr>
</table>
{{/each}}