diff options
Diffstat (limited to 'index.pl')
-rwxr-xr-x | index.pl | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -766,6 +766,18 @@ get '/x/about' => sub { $self->render( 'about', version => $VERSION ); }; +get '/x/impressum' => sub { + my ($self) = @_; + + $self->render('imprint'); +}; + +get '/x/imprint' => sub { + my ($self) = @_; + + $self->render('imprint'); +}; + post '/x/geolocation' => sub { my ($self) = @_; |