My First Blog Post
Welcome to my first blog post! This is an example of how to write posts using Astro Paper.
How to Create Posts
- Create a new
.mdfile in thesrc/data/blog/directory. - Add the required front matter at the top of the file.
- Write your content in Markdown format.
Front Matter Requirements
---
title: "Your Post Title"
description: "A brief description of your post"
pubDatetime: YYYY-MM-DD
tags: ["tag1", "tag2"]
draft: false
---
Markdown Features
You can use all standard Markdown features:
- Bold text for emphasis.
- Italic text for subtle emphasis.
- Lists (like this one).
- Code blocks with syntax highlighting.
console.log("Hello, World!");
Adding Images
You can add images using standard Markdown syntax:

Adding Links
Feel free to explore and customize your posts!