53 lines
1,020 B
Scheme
Executable file
53 lines
1,020 B
Scheme
Executable file
<% require css("purplespider/basic-calendar: client/dist/css/calendar.css") %>
|
|
|
|
<div class="content-container unit size3of4 lastUnit">
|
|
<h1>$Title</h1>
|
|
|
|
$Content
|
|
|
|
<% if ShowPast %>
|
|
|
|
<% if getEvents(past) %>
|
|
|
|
<p class="pastfuture"><a href="$Link">» View Upcoming Events</a></p>
|
|
|
|
<h2>Past Events</h2>
|
|
|
|
<% loop getEvents(past).GroupedBy(Year) %>
|
|
|
|
<% loop Children %>
|
|
<% include PurpleSpider/BasicCalendar/CalendarEntry %>
|
|
<% end_loop %>
|
|
|
|
<% end_loop %>
|
|
|
|
|
|
<% else %>
|
|
|
|
<p><strong>There are no upcoming events.</strong></p>
|
|
|
|
<% end_if %>
|
|
|
|
<% else %>
|
|
|
|
<% if getEvents(past) %><p class="pastfuture"><a href="$Link?past">» View Past Events</a></p><% end_if %>
|
|
<h2>Upcoming Events</h2>
|
|
<% if getEvents(future) %>
|
|
|
|
<% loop getEvents(future).GroupedBy(Year) %>
|
|
|
|
<% loop Children %>
|
|
<% include PurpleSpider/BasicCalendar/CalendarEntry %>
|
|
<% end_loop %>
|
|
|
|
<% end_loop %>
|
|
|
|
|
|
<% else %>
|
|
|
|
<p><strong>There are no upcoming events.</strong></p>
|
|
|
|
<% end_if %>
|
|
|
|
<% end_if %>
|
|
</div>
|