Setting up this site
This site uses Astro’s content collections. Each content type lives in src/content/<type>/ and is described in src/content.config.ts.
Adding an entry
- Create
src/content/entries/<slug>.md - Fill in
title,date, optionaltags - Write the body in Markdown
Adding a link
Links require a url field in addition to the base schema.
---
title: A great article
date: 2026-05-27
url: https://example.com/article
tags: [reading]
---