Vulcan/client/views/posts/post_list/posts_list.html
2015-03-22 09:42:58 +09:00

13 lines
No EOL
496 B
HTML

<template name="posts_list">
<div class="posts-wrapper grid grid-module">
{{> Template.dynamic template=postsListIncoming data=incoming}}
<div class="posts list {{postsLayout}}" aria-live="polite">
{{#each postsCursor}}
{{> Template.dynamic template=before_post_item}}
{{> Template.dynamic template=post_item}}
{{> Template.dynamic template=after_post_item}}
{{/each}}
</div>
{{> Template.dynamic template=postsLoadMore}}
</div>
</template>