Metadata

Add metadata to your markdown files using YAML front matter at the top of the file:

---
title: "Page Title"
description: "Page description for SEO"
date: 2025-12-13
tags: [tag1, tag2, tag3]
draft: false
order: 1
---
# Getting Started

Your content here...

Available fields:

  • title - Page title (used in navigation and browser tab)
  • description - Meta description for SEO
  • date - Publication date (YYYY-MM-DD format)
  • tags - List of tags for categorization
  • draft - Set to true to hide from navigation (when using --no-drafts)
  • order - Numeric value for sorting pages in navigation (lower numbers appear first)
  • author - Author name (displayed with [[AUTHOR]] placeholder)
  • after - Key of item this should appear after in navigation (use "index" to place after index.md) (See Order of Docs for more information.)