mirror of
https://github.com/derf/travelynx
synced 2024-11-14 00:37:16 +00:00
12 lines
351 B
Text
12 lines
351 B
Text
<div class="row">
|
|
<div class="col s12">
|
|
<ul class="pagination">
|
|
% for my $year (history_years()) {
|
|
% my $link_to = $year->[0];
|
|
% my $text = $year->[1];
|
|
% my $class = $link_to eq $current ? 'active' : 'waves-effect';
|
|
<li class="<%= $class %>"><a href="/history/<%= $link_to %>"><%= $text %></a></li>
|
|
% }
|
|
</ul>
|
|
</div>
|
|
</div>
|