mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
13 lines
392 B
HTML
13 lines
392 B
HTML
<template name="posts_daily">
|
|
<div class="grid">
|
|
{{#each days}}
|
|
{{> before_day}}
|
|
<h2 class="posts-day-heading">{{formatDate date "dddd, MMMM Do YYYY"}}</h2>
|
|
|
|
{{> posts_list_controller context}}
|
|
|
|
{{> after_day}}
|
|
{{/each}}
|
|
<a class="load-more-days-button grid-module" href="{{loadMoreDaysUrl}}"><span>{{_ "load_next_days"}}</span></a>
|
|
</div>
|
|
</template>
|