mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
07ec33fb3a
refs https://github.com/TryGhost/Team/issues/2769 Needs some extra styling and design, this is only a minimal version behind the feature flag.
28 lines
974 B
Handlebars
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>
|