Skip to content
Snippets Groups Projects
Unverified Commit 127b40c2 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

not_found: allow custom error message

parent f12bec53
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,12 @@
<div class="card caution-color">
<div class="card-content white-text">
<span class="card-title">404 Not Found</span>
<p>Diese Seite gibt es hier nicht.</p>
% if (my $m = stash('message')) {
<p><%= $m %></p>
% }
% else {
<p>Diese Seite gibt es hier nicht.</p>
% }
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment