creating wiki pages
on this page
This guide explains how to create new wiki pages for this site.
Quick Start
- Create a new
.mdfile insrc/content/wiki/ - Add the required frontmatter
- Write your content
- Link to related pages
Required Frontmatter
Every wiki page needs this frontmatter:
wiki-page.mdyaml
---
title: 'Your Page Title'
description: 'Brief description of the page'
category: 'Infrastructure' # see the category list below
publishDate: 2025-08-01
updatedDate: 2026-08-24
tags: ['relevant', 'tags']
relatedPages: ['path/to/other-page']
---File Naming
- Use lowercase with hyphens:
my-new-page.md - Keep names short but descriptive
- The filename becomes the URL slug
Categories
Choose from:
- Infrastructure - Data center power, cooling, siting, and grid topics
- InfoSec - Vulnerability research, CVE write-ups, and security analysis
- Security - Broader security topics and advisories
- Data Centers - Projects, entities, geography, and market analysis
- Programming - Languages, libraries, and tooling notes
- Reasoning - Logic, fallacies, and argument analysis
- Legal / Legal Tech - Law, legal practice, and legal AI
- AI / Models / AI & Society - Model notes, evaluations, and societal impact
- News - Dated event coverage and rolling logs
- Meta - Documentation about the site itself
- Networking, Outdoors, Maker, Tools, Sloppyright - Smaller topic areas
Linking Pages
- Use
relatedPagesin frontmatter to connect topics - Reference other pages with standard markdown links:
[text](/wiki/page-slug)
Best Practices
- Keep pages focused on one topic
- Use clear, descriptive titles
- Include relevant tags for search
- Link to related content
- Update the
updatedDatewhen editing