Vulcan/client/views/posts/post_digest.html
2013-04-14 12:42:32 +10:00

19 lines
480 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>
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
</div>
</template>