summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/index.pl b/index.pl
index f9f2619..de7f708 100644
--- a/index.pl
+++ b/index.pl
@@ -639,6 +639,18 @@ get '/_redirect' => sub {
return;
};
+get '/_privacy' => sub {
+ my $self = shift;
+
+ $self->render('privacy');
+};
+
+get '/_imprint' => sub {
+ my $self = shift;
+
+ $self->render('imprint');
+};
+
get '/' => \&handle_request;
get '/:city/(*stop).html' => \&render_html;
get '/:city/(*stop).json' => \&render_json;