mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
13 lines
387 B
HTML
13 lines
387 B
HTML
<template name="postsDaily">
|
|
<div class="grid">
|
|
{{#each days}}
|
|
{{> beforeDay}}
|
|
<h2 class="posts-day-heading">{{formatDate date "dddd, MMMM Do YYYY"}}</h2>
|
|
|
|
{{> postsListController context}}
|
|
|
|
{{> afterDay}}
|
|
{{/each}}
|
|
<a class="load-more-days-button grid-module" href="{{loadMoreDaysUrl}}"><span>{{_ "load_next_days"}}</span></a>
|
|
</div>
|
|
</template>
|