summaryrefslogtreecommitdiff
path: root/templates/_history_months.html.ep
blob: 2dc0141a08d97051dfa178e3bb2e345a183d69c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="row">
	<div class="col s12">
		<ul class="pagination">
			% my ($prev, $current, $next) = journeys->get_nav_months(uid => current_user->{id}, year => $year, month => $month);
			% if ($prev) {
				<li class="waves-effect waves-light"><a href="/history/<%= $prev->[0] %>"><i class="material-icons">chevron_left</i></a></li>
			% }
			% else {
				<li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>
			% }
			% if ($current) {
				<li class="" style="min-width: 8em;"><a href="/history/<%= $current->[0] %>"><%= $current->[1] %></a></li>
			% }
			% if ($next) {
				<li class="waves-effect waves-light"><a href="/history/<%= $next->[0] %>"><i class="material-icons">chevron_right</i></a></li>
			% }
			% else {
				<li class="disabled"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
			% }
			<li class=""><a href="/history/<%= $year %>"><%= $year %></a></li>
		</ul>
	</div>
</div>