import { html, htmlToResponse } from "@mastrojs/mastro"; import { Layout } from "../components/Layout.ts"; import { readMarkdownFiles } from "@mastrojs/markdown"; export const GET = async () => { const posts = await readMarkdownFiles("data/posts/*.md"); return htmlToResponse( Layout({ title: "Home", children: html`

About me

I am a (human) developer.

Posts

${posts.map( (post) => html` ${post.meta.title} `, )}
`, }), ); };