Nov 05, 2025 · 4 min read · Loading views…

Shipping the Blog Workflow

How this site uses Eleventy collections and Markdown commits to publish updates.

Welcome to the new blog! Posts live inside the repository under src/blogs/posts/ with filenames that begin with the date, like 2025-11-05-welcome.md.

Add front matter fields for title, description, date, and readTime. The Eleventy build will transform each Markdown file into a page at /blogs/<slug>/ and list it automatically on the archive page.

# Example authoring flow
cp src/blogs/posts/2025-11-05-welcome.md src/blogs/posts/2025-12-01-new-platform-post.md
# edit the file, then
npm run build

Once the changes land in the repository (via commit or PR merge), GitHub Pages can rebuild the static site and surface the new article.