summaryrefslogtreecommitdiff
path: root/templates/_history_years.html.ep
blob: 02bb70d56464803157b127493cc67cd57cd2badc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="row">
	<div class="col s12">
		<ul class="pagination">
			% while ($since < $now) {
				% my $link_to = $since->strftime('%Y');
				% my $class = $link_to eq $current ? 'active' : 'waves-effect';
				<li class="<%= $class %>"><a href="/history/<%= $link_to %>"><%= $since->strftime('%Y') %></a></li>
				% $since->add(years => 1)->set(month => 1, day => 1, hour => 0, minute => 0, second => 0);
			% }
		</ul>
	</div>
</div>