mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
No EOL
340 B
HTML
14 lines
No EOL
340 B
HTML
<template name="posts_list">
|
|
<div class="posts grid list">
|
|
{{#each posts}}
|
|
{{> post_item}}
|
|
{{/each}}
|
|
</div>
|
|
{{#if postsReady}}
|
|
<div class="grid more-button {{#if allPostsLoaded}} hidden {{/if}}">
|
|
<a class="more-link" href="#">Load more</a>
|
|
</div>
|
|
{{else}}
|
|
<div class="grid">Loading... </div>
|
|
{{/if}}
|
|
</template> |