Vulcan/client/views/posts/posts_top.html

12 lines
293 B
HTML
Raw Normal View History

2012-09-18 11:49:17 +09:00
<template name="posts_top">
{{#if canView replace}}
2012-10-05 14:08:46 +09:00
<div class="posts grid list">
{{#each posts}}
{{> post_item}}
{{/each}}
</div>
<div class="grid more-button {{#if allPostsLoaded}} hidden {{/if}}">
2012-10-09 16:11:30 +09:00
<a class="more-link" href="#">Load more</a>
2012-10-08 16:12:47 +02:00
</div>
{{/if}}
</template>