Skip to content

Commit 5437c2a

Browse files
committed
Put pages in an article tag
1 parent 6232f8a commit 5437c2a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

routes/pages/[page].tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ import { MarkdownBlocks } from "../../components/MarkdownBlocks.tsx";
44

55
export default async function Page(_req: Request, ctx: RouteContext) {
66
const content = await getPagesMarkdown(ctx.params.page);
7-
return <MarkdownBlocks content={content} />;
7+
return (
8+
<article>
9+
<MarkdownBlocks content={content} />
10+
</article>
11+
);
812
}

0 commit comments

Comments
 (0)