Catalyst Introducing Catalyst #24

404 page

<html>
<head>
  <title>[% (title || "KitiWiki") | html %]</title>
  <link rel="stylesheet" type="text/css" href="[%base%]static/main.css" />
</head>
<body>
[% IF c.flash.message %]
<p class="message">[% c.flash.message | html %]</p>
[% END %]
[% content %]
</body>
</html>
[% WRAPPER page.tt title = "404 Not Found" %]
<h1>404 Not Found</h1>
<a href="[% c.uri_for('/') | html %]">Go home</a>
[% END %]
""