Vulcan/client/views/posts/posts_digest.html

26 lines
671 B
HTML
Raw Normal View History

<template name="posts_digest">
<div class="grid">
<div class="grid-block">
2013-11-04 18:45:03 +01:00
{{i18n "The top 5 posts of each day."}} |
{{#if showPreviousDate}}
2013-11-04 18:45:03 +01:00
<a href="{{previousDateURL}}" class="prev-link">{{i18n "Previous Day"}}</a> |
{{/if}}
{{currentDate}} |
{{#if showNextDate}}
2013-11-04 18:45:03 +01:00
<a href="{{nextDateURL}}" class="next-link">{{i18n "Next Day"}}</a>
{{/if}}
</div>
</div>
2013-10-27 09:38:21 +09:00
{{#if hasPosts}}
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
2013-10-27 09:38:21 +09:00
</div>
{{else}}
<div class="grid-small grid-block dialog">
2013-11-09 02:02:05 +01:00
<p>{{i18n "Sorry, no posts for today"}}.</p>
2013-10-27 09:38:21 +09:00
</div>
{{/if}}
</template>