## Create sample posts
Create a `posts` directory with two markdown files in it:
```
mkdir posts
touch posts/my-first-post.md posts/my-second-post.md
```
Use your editor to add the following post content:
`my-first-post.md`
```md
---
title: This is my first blog post
published_at: 2024-10-05T20:00:00.000Z
blurb: This is a must-read blog post.
---
# Hello, world!
This is cool.
```
`my-second-post.md`
```md
---
title: This is my second blog post
published_at: 2024-10-06T20:00:00.000Z
blurb: A riveting, deeply insightful follow-up to my previous post.
---
Foo bar baz!
```