Vulcan/client/views/posts/posts_list.html
2014-08-27 10:23:56 +09:00

12 lines
No EOL
349 B
HTML

<template name="posts_list">
<div class="posts-wrapper grid grid-module">
<div class="posts list">
{{#each posts}}
{{> UI.dynamic template=post_item}}
{{/each}}
</div>
{{#if hasMorePosts}}
<a class="more-button grid-module" href="{{loadMoreUrl}}"><span>{{i18n "Load more"}}</span></a>
{{/if}}
</div>
</template>