travelynx/templates/_history_years.html.ep

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>