mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
9 lines
148 B
HTML
9 lines
148 B
HTML
<template name="posts">
|
|
{{#if show}}
|
|
<div class="posts grid">
|
|
{{#each posts}}
|
|
{{> post}}
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|