mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
21 lines
384 B
Scheme
21 lines
384 B
Scheme
|
<% if DisplayMode == month %>
|
||
|
<ul class="archiveMonths">
|
||
|
<% control Dates %>
|
||
|
<li>
|
||
|
<a href="$Link">
|
||
|
$Date.Format(F) $Date.Year
|
||
|
</a>
|
||
|
</li>
|
||
|
<% end_control %>
|
||
|
</ul>
|
||
|
<% else %>
|
||
|
<ul class="archiveYears">
|
||
|
<% control Dates %>
|
||
|
<li>
|
||
|
<a href="$Link">
|
||
|
$Date.Year<% if Last %><% else %>,<% end_if %>
|
||
|
</a>
|
||
|
</li>
|
||
|
<% end_control %>
|
||
|
</ul>
|
||
|
<% end_if %>
|