Vulcan/client/views/posts/posts_list.html

12 lines
349 B
HTML
Raw Normal View History

<template name="posts_list">
2014-08-27 10:23:56 +09:00
<div class="posts-wrapper grid grid-module">
2014-07-05 12:36:18 +09:00
<div class="posts list">
{{#each posts}}
{{> UI.dynamic template=post_item}}
{{/each}}
</div>
2014-07-04 11:32:04 +09:00
{{#if hasMorePosts}}
2014-08-21 15:30:05 +09:00
<a class="more-button grid-module" href="{{loadMoreUrl}}"><span>{{i18n "Load more"}}</span></a>
2014-07-04 11:32:04 +09:00
{{/if}}
</div>
2013-04-06 14:50:23 +09:00
</template>