Guides ·

Setting up this site

#astro #meta

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

  1. Create src/content/entries/<slug>.md
  2. Fill in title, date, optional tags
  3. Write the body in Markdown

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]
---