pleshevski.ru/views/pages/e404.ts
Dmitriy Pleshevskiy 406429cbb5
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
move works to the module
2023-06-20 16:30:27 +03:00

18 lines
508 B
TypeScript

import { PageLayout } from "../comp/page_layout.ts";
import { AnyNode, E } from "ren/node.ts";
import { classNames } from "ren/attrs.ts";
import { Context } from "../../context.ts";
import { H3 } from "../../uikit/typo.ts";
export function E404Page(ctx: Context): AnyNode {
ctx.title = "Not Found - 404 | Pleshevski";
return PageLayout(ctx, [E404(ctx)]);
}
export function E404(ctx: Context): AnyNode {
return E("div", classNames("content-width gap-v-1x5"), [
H3(ctx.tr.Page_not_found),
]);
}