diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-04-07 18:44:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-04-07 18:44:33 +0200 |
commit | ffee7177ac26f4e79227cdf0abcd83f80f34faa4 (patch) | |
tree | 9232d785b19f5e10239be0c20ca55bcc60062700 /templates/_history_years.html.ep | |
parent | 828dd54266dfaf2b58c0498b7ced6c06d6e104ef (diff) |
Refactor history template, add yearly stats
Diffstat (limited to 'templates/_history_years.html.ep')
-rw-r--r-- | templates/_history_years.html.ep | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/_history_years.html.ep b/templates/_history_years.html.ep new file mode 100644 index 0000000..02bb70d --- /dev/null +++ b/templates/_history_years.html.ep @@ -0,0 +1,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> |