Vulcan/client/views/posts/posts_digest.html

29 lines
749 B
HTML
Raw Normal View History

<template name="posts_digest">
<div class="grid">
<div class="grid-block">
{{_ "the_top_5_posts_of_each_day"}} |
{{#if showPreviousDate}}
<a href="{{previousDateURL}}" class="prev-link">{{_ "previous_day"}}</a> |
{{/if}}
{{currentDate}} |
{{#if showNextDate}}
<a href="{{nextDateURL}}" class="next-link">{{_ "next_day"}}</a>
{{/if}}
</div>
</div>
{{> UI.dynamic template=postsListIncoming data=incoming}}
2013-10-27 09:38:21 +09:00
{{#if hasPosts}}
<div class="posts grid list">
{{#each posts}}
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=post_item}}
{{/each}}
2013-10-27 09:38:21 +09:00
</div>
{{else}}
<div class="grid-small grid-block dialog">
<p>{{_ "sorry_no_posts_for"}} {{currentDate}}.</p>
2013-10-27 09:38:21 +09:00
</div>
{{/if}}
</template>