mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
12 lines
297 B
HTML
12 lines
297 B
HTML
![]() |
<template name="posts_pending">
|
||
|
{{#if canPost replace}}
|
||
|
<div class="posts grid list">
|
||
|
{{#each posts}}
|
||
|
{{> post_item}}
|
||
|
{{/each}}
|
||
|
</div>
|
||
|
<div class="grid more-button {{#if allPostsLoaded}} hidden {{/if}}">
|
||
|
<a class="more-link" href="#">Load more</a>
|
||
|
</div>
|
||
|
{{/if}}
|
||
|
</template>
|