Getting Started
This guide covers how to get started with Grand Ωmega's knowledge base.
Prerequisites
- Git installed on your machine
- A text editor (VS Code, Neovim, etc.)
- Zola installed locally
Clone the repository
git clone git@github.com:grand-omega/grand-omega.github.io.git
cd grand-omega.github.io
Local development
Start the Zola dev server:
zola serve
The site will be available at http://127.0.0.1:1111.
Adding content
Blog posts
Create a new file in content/blog/ with the naming convention YYYY-MM-DD-slug.md:
+++
title = "Your Post Title"
date = 2026-04-15
description = "A short summary."
[taxonomies]
tags = ["tag1", "tag2"]
+++
Your content here.
Documentation pages
Create a new file in the appropriate folder under content/docs/:
+++
title = "Page Title"
date = 2026-04-15
description = "What this page covers."
[taxonomies]
tags = ["topic"]
+++
Your documentation here.