+++ title = "README" draft = true render = false +++
Source content for the Wheel of Heaven knowledge base. This repository contains all wiki entries, timeline pages, articles, and multilingual translations.
This content is consumed by multiple targets:
- www.wheelofheaven.world - Main website (Zola static site)
- api.wheelofheaven.world - JSON API endpoints
data-content/
├── _index.md # Homepage content
├── wiki/ # Encyclopedia entries
├── timeline/ # World Ages and historical periods
├── resources/ # External resources catalog
├── essentials/ # Quick reference guides
├── explainers/ # In-depth articles
├── articles/ # Blog posts
├── library/ # Library section pages
├── de/ # German translations
├── es/ # Spanish translations
├── fr/ # French translations
├── ja/ # Japanese translations
├── ko/ # Korean translations
├── ru/ # Russian translations
├── zh/ # Simplified Chinese
└── zh-Hant/ # Traditional Chinese
Content files use Markdown with TOML frontmatter:
+++
title = "Page Title"
description = "SEO description"
template = "wiki-page.html"
[extra]
category = "Category Name"
+++
Content body in Markdown...| Code | Language |
|---|---|
| en | English (default) |
| de | Deutsch |
| es | Español |
| fr | Français |
| ja | 日本語 |
| ko | 한국어 |
| ru | Русский |
| zh | 简体中文 |
| zh-Hant | 繁體中文 |
This repository is used as a Git submodule:
# In www.wheelofheaven.io (the main website repo)
git submodule add [email protected]:wheelofheaven/data-content.git content
# Update to latest
git submodule update --remote content- Fork this repository
- Create a branch for your changes
- Submit a pull request
See Contributing Guidelines for the broad overview, and the developer docs at docs.wheelofheaven.world for the per-content-type how-tos:
- Wiki Entry — frontmatter, structure, sourcing, terminology
- Article — long-form, idea-driven, evergreen
- Newsroom Dispatch — short, event-anchored
- Translations — workflow + per-language conventions for the 10 supported languages
- Frontmatter Reference — every TOML field with worked examples
CC0-1.0 (Public Domain)