Vulcan/client/views/posts/posts_list.html

32 lines
771 B
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}}
2013-04-06 18:39:01 +11: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}}
2013-04-06 14:50:23 +09:00
</template>