import { getPath } from "../utils/path.ts"; import type { CMSContent } from "../../types.ts"; interface Props { options: CMSContent; } export default function template({ options }: Props) { return `

Not found

The page you are looking for does not exist.

Back to the home
`; }