Vulcan/client/views/posts/posts_digest.html
2014-07-05 11:42:28 +09:00

25 lines
691 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>
{{#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 today"}}.</p>
</div>
{{/if}}
</template>