mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 20:46:40 -04:00
13 lines
292 B
HTML
13 lines
292 B
HTML
![]() |
<template name="postsDaily">
|
||
|
<div class="grid">
|
||
|
{{#each day}}
|
||
|
<div class="posts-day posts list">
|
||
|
<h2 class="posts-day-heading">xyz</h2>
|
||
|
{{#each posts}}
|
||
|
{{> UI.dynamic template=post_item}}
|
||
|
{{/each}}
|
||
|
</div>
|
||
|
{{/each}}
|
||
|
</div>
|
||
|
</template>
|