mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
382 B
HTML
14 lines
382 B
HTML
![]() |
<template name="postsDaily">
|
||
|
<div class="grid">
|
||
|
{{#each days}}
|
||
|
{{> beforeDay}}
|
||
|
<h2 class="posts-day-heading">{{formatDate date "dddd, MMMM Do YYYY"}}</h2>
|
||
|
|
||
|
{{> singleDay data=context}}
|
||
|
|
||
|
{{> afterDay}}
|
||
|
{{/each}}
|
||
|
<a class="load-more-days-button grid-module" href="{{loadMoreDaysUrl}}"><span>{{_ "load_next_days"}}</span></a>
|
||
|
</div>
|
||
|
</template>
|