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