2023-03-22 17:16:55 +03:00
|
|
|
{{#each latestPosts}}
|
|
|
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
2023-03-20 16:30:42 +03:00
|
|
|
<tr>
|
2023-03-22 17:16:55 +03:00
|
|
|
<td class="latest-post">
|
2023-03-24 16:54:16 +03:00
|
|
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
{{#if ../latestPostsHasImages}}
|
|
|
|
{{#if featureImage}}
|
|
|
|
<td class="latest-post-img-mobile">
|
|
|
|
<a href="{{url}}">
|
2023-03-22 17:16:55 +03:00
|
|
|
<img
|
2023-03-22 17:52:21 +03:00
|
|
|
src="{{featureImageMobile.src}}"
|
|
|
|
{{#if featureImageMobile.width }}
|
|
|
|
width="{{featureImageMobile.width}}"
|
|
|
|
{{/if}}
|
|
|
|
{{#if featureImageMobile.height }}
|
|
|
|
height="{{featureImageMobile.height}}"
|
|
|
|
{{/if}}
|
2023-03-22 17:16:55 +03:00
|
|
|
/>
|
2023-03-24 16:54:16 +03:00
|
|
|
</a>
|
|
|
|
</td>
|
2023-03-22 17:16:55 +03:00
|
|
|
{{/if}}
|
2023-03-24 16:54:16 +03:00
|
|
|
{{/if}}
|
|
|
|
<td valign="top" align="left" class="latest-post-title">
|
|
|
|
<h4 class="{{#if ../latestPostsHasImages}}{{#if (not featureImage)}}no-image{{/if}}{{/if}}">
|
|
|
|
<a href="{{url}}">{{{title}}}</a>
|
|
|
|
</h4>
|
|
|
|
{{#if excerpt}}
|
|
|
|
<p>
|
|
|
|
<a href="{{url}}">{{{excerpt}}}</a>
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
|
|
|
{{#if ../latestPostsHasImages}}
|
|
|
|
{{#if featureImage}}
|
|
|
|
<td width="100" class="latest-post-img">
|
|
|
|
<a href="{{url}}">
|
2023-03-23 15:16:48 +03:00
|
|
|
<img
|
|
|
|
src="{{featureImage.src}}"
|
|
|
|
{{#if featureImage.width }}
|
|
|
|
width="{{featureImage.width}}"
|
|
|
|
{{/if}}
|
|
|
|
{{#if featureImage.height }}
|
|
|
|
height="{{featureImage.height}}"
|
|
|
|
{{/if}}
|
|
|
|
/>
|
2023-03-24 16:54:16 +03:00
|
|
|
</a>
|
|
|
|
</td>
|
2023-03-23 15:16:48 +03:00
|
|
|
{{/if}}
|
2023-03-24 16:54:16 +03:00
|
|
|
{{/if}}
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-03-20 16:30:42 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
2023-03-22 17:16:55 +03:00
|
|
|
</table>
|
2023-03-22 17:52:21 +03:00
|
|
|
{{/each}}
|