mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 20:46:40 -04:00
16 lines
490 B
HTML
16 lines
490 B
HTML
<template name="postsDaily">
|
|
<div class="grid">
|
|
{{#each days}}
|
|
<div class="posts-wrapper posts-day posts list grid-module">
|
|
<h2 class="posts-day-heading">{{formatDate date "dddd, MMMM Do YYYY"}}</h2>
|
|
{{#if posts}}
|
|
{{#each posts}}
|
|
{{> UI.dynamic template=post_item}}
|
|
{{/each}}
|
|
{{else}}
|
|
<p class="empty-day-notice">Sorry, not posts for that day.</p>
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</template>
|