2015-05-19 01:03:08 +02:00
|
|
|
<script>
|
|
|
|
function showHideDates() {
|
2017-10-20 16:12:43 +02:00
|
|
|
if( $('#posted-date-selector-drop').is(':visible')) {
|
|
|
|
$('#posted-date-selector-drop').hide();
|
2017-10-18 22:49:16 +02:00
|
|
|
$('#posted-date-collapse').html(window.showMore);
|
|
|
|
|
2017-10-19 00:52:01 +02:00
|
|
|
} else {
|
2017-10-20 16:12:43 +02:00
|
|
|
$('#posted-date-selector-drop').show();
|
2017-10-18 22:49:16 +02:00
|
|
|
$('#posted-date-collapse').html(window.showFewer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2015-05-19 01:03:08 +02:00
|
|
|
|
2020-01-11 10:05:43 +01:00
|
|
|
<span id="datebrowse-sidebar-inflated" class="widget fakelink" onclick="openCloseWidget('datebrowse-sidebar', 'datebrowse-sidebar-inflated');">
|
2013-04-23 13:47:57 +02:00
|
|
|
<h3>{{$title}}</h3>
|
2020-01-11 10:05:43 +01:00
|
|
|
</span>
|
|
|
|
<div id="datebrowse-sidebar" class="widget">
|
|
|
|
<span class="fakelink" onclick="openCloseWidget('datebrowse-sidebar', 'datebrowse-sidebar-inflated');">
|
|
|
|
<h3>{{$title}}</h3>
|
|
|
|
</span>
|
2015-05-19 01:03:08 +02:00
|
|
|
<ul id="posted-date-selector" class="datebrowse-ul">
|
|
|
|
{{foreach $dates as $y => $arr}}
|
2017-10-20 16:12:43 +02:00
|
|
|
|
2015-05-19 01:03:08 +02:00
|
|
|
{{if $y == $cutoff_year}}
|
|
|
|
</ul>
|
2017-10-20 16:12:43 +02:00
|
|
|
<ul id="posted-date-selector-drop" class="datebrowse-ul" style="display: none;">
|
2015-05-19 01:03:08 +02:00
|
|
|
{{/if}}
|
2017-10-20 16:12:43 +02:00
|
|
|
|
2015-05-19 01:03:08 +02:00
|
|
|
<li id="posted-date-selector-year-{{$y}}" class="tool">
|
|
|
|
<a class="datebrowse-link" href="#" onclick="openClose('posted-date-selector-{{$y}}'); return false;">{{$y}}</a>
|
|
|
|
</li>
|
2017-10-19 16:34:08 +02:00
|
|
|
<li id="posted-date-selector-{{$y}}" class="tool posted-date-selector-months" style="display: none;">
|
|
|
|
<ul class="datebrowse-ul">
|
2015-05-19 01:03:08 +02:00
|
|
|
{{foreach $arr as $d}}
|
|
|
|
<li class="tool">
|
2019-05-26 01:08:15 +02:00
|
|
|
<a class="datebrowse-link" href="{{$url}}/{{$d.1}}/{{$d.2}}">{{$d.0}}</a>
|
2015-05-19 01:03:08 +02:00
|
|
|
</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
2017-10-19 16:34:08 +02:00
|
|
|
</li>
|
2015-05-19 01:03:08 +02:00
|
|
|
{{/foreach}}
|
2017-10-20 15:59:14 +02:00
|
|
|
</ul>
|
|
|
|
{{if $cutoff}}
|
|
|
|
<ul class="datebrowse-ul">
|
|
|
|
<li onclick="showHideDates(); return false;" id="posted-date-collapse" class="fakelink tool">{{$showmore}}</li>
|
2015-05-19 01:03:08 +02:00
|
|
|
</ul>
|
2017-10-19 16:34:08 +02:00
|
|
|
{{/if}}
|
2015-05-19 01:07:40 +02:00
|
|
|
</div>
|
2020-01-11 10:05:43 +01:00
|
|
|
<script>
|
|
|
|
initWidget('datebrowse-sidebar', 'datebrowse-sidebar-inflated');
|
|
|
|
</script>
|