2012-10-09 12:02:37 +09:00
|
|
|
<template name="posts_digest">
|
2012-10-09 16:11:30 +09:00
|
|
|
<div class="grid">
|
|
|
|
<div class="grid-block">
|
|
|
|
The top 5 posts of each day. |
|
2012-10-10 13:54:48 +09:00
|
|
|
{{#if showPreviousDate}}
|
|
|
|
<a href="{{previousDateURL}}" class="prev-link" data-increment="-1">Previous Day</a> |
|
|
|
|
{{/if}}
|
|
|
|
{{currentDate}} |
|
|
|
|
{{#if showNextDate}}
|
|
|
|
<a href="{{nextDateURL}}" class="next-link" data-increment="1">Next Day</a>
|
|
|
|
{{/if}}
|
2012-10-09 16:11:30 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-10-09 12:02:37 +09:00
|
|
|
<div class="posts grid list">
|
|
|
|
{{#each posts}}
|
|
|
|
{{> post_item}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</template>
|