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>
|
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}}
|
|
|
|
{{> post_item}}
|
|
|
|
{{/each}}
|
2013-10-27 09:38:21 +09:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="grid-small grid-block dialog">
|
2013-11-09 02:02:05 +01:00
|
|
|
<p>{{i18n "Sorry, no posts for today"}}.</p>
|
2013-10-27 09:38:21 +09:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2013-04-14 12:42:32 +10:00
|
|
|
</template>
|