You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
436 B

import { h } from "../jsx.ts";
import { Context } from "../oak.ts";
import Base from "../templates/Base.tsx";
export default (_: unknown, ctx: Context) => {
ctx.response.status = 404;
return (
<Base title="404" description="L bozo" stylepath="css/index.scss">
<div style="text-align:center;">
<h1>404</h1>
<p>Page not found.</p>
</div>
</Base>
);
};