2013-04-14 12:42:32 +10:00
|
|
|
<template name="posts_digest">
|
|
|
|
<div class="grid">
|
|
|
|
<div class="grid-block">
|
2013-11-04 18:45:03 +01:00
|
|
|
{{i18n "The top 5 posts of each day."}} |
|
2013-04-14 12:42:32 +10:00
|
|
|
{{#if showPreviousDate}}
|
2013-11-04 18:45:03 +01:00
|
|
|
<a href="{{previousDateURL}}" class="prev-link">{{i18n "Previous Day"}}</a> |
|
2013-04-14 12:42:32 +10:00
|
|
|
{{/if}}
|
|
|
|
{{currentDate}} |
|
|
|
|
{{#if showNextDate}}
|
2013-11-04 18:45:03 +01:00
|
|
|
<a href="{{nextDateURL}}" class="next-link">{{i18n "Next Day"}}</a>
|
2013-04-14 12:42:32 +10:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-15 12:42:17 +10:00
|
|
|
|
2014-09-16 15:29:11 +10:00
|
|
|
{{> UI.dynamic template=postsListIncoming data=incoming}}
|
2014-09-15 12:42:17 +10:00
|
|
|
|
2013-10-27 09:38:21 +09:00
|
|
|
{{#if hasPosts}}
|
|
|
|
<div class="posts grid list">
|
2013-07-19 14:37:36 +09:00
|
|
|
{{#each posts}}
|
2014-07-05 11:42:28 +09:00
|
|
|
{{> UI.dynamic template=post_item}}
|
2013-07-19 14:37:36 +09:00
|
|
|
{{/each}}
|
2013-10-27 09:38:21 +09:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="grid-small grid-block dialog">
|
2014-07-07 23:25:53 -05:00
|
|
|
<p>{{i18n "Sorry, no posts for"}} {{currentDate}}.</p>
|
2013-10-27 09:38:21 +09:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2013-04-14 12:42:32 +10:00
|
|
|
</template>
|