summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/index.pl b/index.pl
index 4092ad4..1cead7c 100644
--- a/index.pl
+++ b/index.pl
@@ -956,6 +956,15 @@ get '/_auto' => sub {
);
};
+get '/_datenschutz' => sub {
+ my $self = shift;
+
+ $self->render(
+ 'privacy',
+ hide_opts => 1
+ );
+};
+
post '/_geolocation' => sub {
my $self = shift;
@@ -985,6 +994,15 @@ post '/_geolocation' => sub {
}
};
+get '/_impressum' => sub {
+ my $self = shift;
+
+ $self->render(
+ 'imprint',
+ hide_opts => 1
+ );
+};
+
app->defaults( layout => 'default' );
app->sessions->default_expiration( 3600 * 24 * 28 );