Getting Started Guide
Learn how to use and customize your wiki
guide tutorial
Getting Started Guide
This guide will help you understand how to use and customize your new wiki.
Creating Pages
To create a new wiki page:
- Add a new
.md
file tosrc/content/pages/
- Include frontmatter with at least a
title
- Write your content in Markdown below the frontmatter
Example Page Structure
---
title: "My New Page"
description: "A brief description of the page"
tags: ["example", "demo"]
category: "Examples"
---
# My New Page
Your content here...
Frontmatter Options
title
: Page title (required)description
: Meta description for SEOtags
: Array of tags for categorizationcategory
: Page category for organizationorder
: Number for sidebar orderingdraft
: Set totrue
to hide from navigationbreadcrumbs
: Custom breadcrumb navigation
Navigation
The sidebar navigation is automatically generated from your pages based on:
- Categories group related pages
- Order determines display sequence
- Draft pages are hidden from navigation
SEO Features
Every page automatically includes:
- Meta title and description
- Open Graph tags
- Structured data
- Sitemap generation