Static publishing is a friendly default for blogs. The output is portable, CDN-friendly, and easy to preview before release.
In Astro, the route files are the publishing workflow:
src/pages/blog/index.astrolists every published post.src/pages/blog/[...slug].astrorenders each article from the content collection.src/pages/tags/[tag].astrobuilds topic pages.src/pages/rss.xml.tsturns the same posts into a feed.
Drafts
This starter uses a draft frontmatter field. Draft posts can stay in the repository while being excluded from generated routes and feeds.
That keeps writing close to the site without accidentally publishing unfinished notes.