summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-03-08 16:11:05 +0100
committerDaniel Friesel <derf@finalrewind.org>2015-03-08 16:11:05 +0100
commita3653fc91cda3ff430a16bf04351e71844b92e95 (patch)
tree74e1c0a3939d29c31e94bce6ca31234e06810307 /index.pl
parentcdbd525d9332ff1ce084ba268ca8bc9b4f171f02 (diff)
proper title tag
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/index.pl b/index.pl
index 4efa602..2864059 100644
--- a/index.pl
+++ b/index.pl
@@ -436,7 +436,11 @@ get '/bar' => sub {
$self->param( yformat => $args{y}{$ysource}{yformat} );
}
- $self->render( 'bargraph', version => $VERSION );
+ $self->render(
+ 'bargraph',
+ title => 'bargraph',
+ version => $VERSION,
+ );
return;
};
@@ -476,8 +480,9 @@ get '/top' => sub {
$self->render(
'toplist',
+ title => 'toplist',
toplist => \@toplist,
- version => $VERSION
+ version => $VERSION,
);
return;
};