The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
<&| /_elements/wrapper, title => _("Something's not quite right") &>

<div id="overview">

<p><%_("You got to a page that we don't think exists.  Anyway, the software has logged this error. Sorry about this.")%></p>

<p><%Jifty->web->link( url => "/", label => _('Go back home...'))%></p>

</div>
</&>
<%doc>
Used as a poor man's 404 handler
</%doc>
<%init>
Jifty->log->error("404: user tried to get to ".$m->dhandler_arg);
$r->header_out( Status => '404');
</%init>