mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
361 B
HTML
14 lines
361 B
HTML
![]() |
<template name="singleDayNav">
|
||
|
<div class="grid">
|
||
|
<div class="grid-block">
|
||
|
{{#if showPreviousDate}}
|
||
|
<a href="{{previousDateURL}}" class="prev-link">{{_ "previous_day"}}</a> |
|
||
|
{{/if}}
|
||
|
{{currentDate}} |
|
||
|
{{#if showNextDate}}
|
||
|
<a href="{{nextDateURL}}" class="next-link">{{_ "next_day"}}</a>
|
||
|
{{/if}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|