This is the second public test article in the v6-folder-test folder.
It records the expected workflow for writing new posts after the AstroPaper v6 migration.
Recommended Workflow
Create a new Markdown file under src/content/posts/.
Add the required frontmatter:
---
title: "Post Title"
author: "Sic Parvis Magna"
pubDatetime: 2026-06-16T10:50:00+07:00
featured: false
draft: false
tags:
- notes
description: "Short post description."
---
Then write the article body below the frontmatter.
Draft Or Public
Use draft: true when the post is only for private notes or testing.
Use draft: false when the post should appear on the live site.
This post intentionally uses draft: false so it can be used as a visible deployment test.