Vulcan/client/views/posts/posts_digest.html
2014-09-16 15:29:11 +10:00

28 lines
765 B
HTML

<template name="posts_digest">
<div class="grid">
<div class="grid-block">
{{i18n "The top 5 posts of each day."}} |
{{#if showPreviousDate}}
<a href="{{previousDateURL}}" class="prev-link">{{i18n "Previous Day"}}</a> |
{{/if}}
{{currentDate}} |
{{#if showNextDate}}
<a href="{{nextDateURL}}" class="next-link">{{i18n "Next Day"}}</a>
{{/if}}
</div>
</div>
{{> UI.dynamic template=postsListIncoming data=incoming}}
{{#if hasPosts}}
<div class="posts grid list">
{{#each posts}}
{{> UI.dynamic template=post_item}}
{{/each}}
</div>
{{else}}
<div class="grid-small grid-block dialog">
<p>{{i18n "Sorry, no posts for"}} {{currentDate}}.</p>
</div>
{{/if}}
</template>