Commit c6532906 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add imprint

parent 856a66c0
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -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) = @_;

+3 −0
Original line number Diff line number Diff line
@@ -11,3 +11,6 @@
	</div>
</div>

% if (-e 'templates/imprint.html.ep') {
%= include 'imprint'
% }