Vulcan/client/views/posts/posts_digest.html
2013-10-27 09:38:21 +09:00

25 lines
630 B
HTML

<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>
{{#if hasPosts}}
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
</div>
{{else}}
<div class="grid-small grid-block dialog">
<p>Sorry, no posts for today.</p>
</div>
{{/if}}
</template>