diff options
Diffstat (limited to 'index.pl')
-rw-r--r-- | index.pl | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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 ); |