Vulcan/client/views/posts/posts_list.html

13 lines
No EOL
421 B
HTML

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