Vulcan/client/views/posts/post_list/posts_list.html

13 lines
496 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">
2015-03-22 09:42:58 +09:00
{{> Template.dynamic template=postsListIncoming data=incoming}}
<div class="posts list {{postsLayout}}" aria-live="polite">
{{#each postsCursor}}
2015-03-22 09:42:58 +09:00
{{> Template.dynamic template=before_post_item}}
{{> Template.dynamic template=post_item}}
{{> Template.dynamic template=after_post_item}}
{{/each}}
2014-07-05 12:36:18 +09:00
</div>
2015-03-22 09:42:58 +09:00
{{> Template.dynamic template=postsLoadMore}}
2014-07-04 11:32:04 +09:00
</div>
2013-04-06 14:50:23 +09:00
</template>