mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
40 lines
1.9 KiB
Handlebars
40 lines
1.9 KiB
Handlebars
{{#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}} |