Upstart Theme Documentation
Markdown And Frontmatter Basics
All content files start with frontmatter. Frontmatter is YAML between --- lines.
Example
---title: "My Page"description: "Short summary"enable: true---
# HeadingThis is paragraph text.Edit A Content File
- Open a file in
src/content/.... - Edit frontmatter keys like
title,description, orenable. - Edit the Markdown body below the second
---. - Save and refresh the browser.
Common Mistakes To Avoid
- Use 2 spaces for indentation in YAML.
- Do not use tabs.
- Keep quotes if a value has
:or special characters.