Vulcan/client/views/posts/posts_list.html

48 lines
1.2 KiB
HTML
Raw Normal View History

<template name="posts_list">
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
</div>
{{#if postsReady}}
<div class="grid more-button {{#if allPostsLoaded}} hidden {{/if}}">
<a class="more-link" href="#">Load more</a>
</div>
{{else}}
2012-12-13 15:22:28 +09:00
<div>Loading...</div>
{{/if}}
</template>
<!-- and the various pages that use the above template -->
<!-- XXX: makes me want to be able to set a context from the router... -->
<template name="posts_top">
{{> posts_list topPostsHandle}}
</template>
<template name="posts_new">
{{> posts_list newPostsHandle}}
</template>
<template name="posts_best">
{{> posts_list bestPostsHandle}}
</template>
<template name="posts_pending">
{{> posts_list pendingPostsHandle}}
</template>
2013-04-06 14:50:23 +09:00
<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>
{{> posts_list digestHandle}}
</template>