blob: 6a83d7475a21831bb18c60f6be92948c26978e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div class="row">
<div class="col s12">
<ul class="pagination">
% for my $month (history_months()) {
% my $link_to = $month->[0];
% my $text = $month->[1];
% my $class = $link_to eq $current ? 'active' : 'waves-effect';
<li class="<%= $class %>"><a href="/history/<%= $link_to %>"><%= $text %></a></li>
% }
</ul>
</div>
</div>
|