mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
6190f66802
* added german translations * to make dates internationalized, too, the setlocale(LC_TIME, Translatable::get_current_locale() . ".UTF8"); should be set in the mysite/code/Page.php ContentController's init function
21 lines
394 B
Scheme
21 lines
394 B
Scheme
<% if DisplayMode == month %>
|
|
<ul class="archiveMonths">
|
|
<% control Dates %>
|
|
<li>
|
|
<a href="$Link">
|
|
$Date.FormatI18N(%B) $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 %> |