Website scaffolding

This commit is contained in:
2026-05-14 17:39:36 -06:00
parent 02746d1460
commit f4df9e8a41
19 changed files with 96 additions and 8 deletions

View File

@@ -1,6 +1,10 @@
- TODO: migrate into docs and replace contents of this file with backlink
- TODO: [PWA support](https://abridge.pages.dev/overview-abridge/#pwa) for mobile sandbox
- TODO: Atkinson Hyperlegible Next
- TODO: tag example pages by demonstrated concept
- TODO: document how to report bugs and get help
- TODO: document security policy
- TODO: cookbook for common Kerolox idioms
This directory hosts the Kerolox website.

View File

@@ -1,3 +1,5 @@
+++
template = "base.html"
template = "pages.html"
+++
- TODO: fancy landing page

View File

@@ -1,8 +1,6 @@
+++
paginate_by = 100
title = "Contributor Guidelines"
sort_by = "title"
template = "pages.html"
title = "Contributor Docs"
template = "index.html"
paginate_by = 5
+++
- TODO: build instructions

View File

@@ -0,0 +1,6 @@
+++
title = "Architecture"
description = "A tour through Kerolox's codebase architecture."
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Build from Source"
description = "How to build Kerolox from source."
+++
TODO

View File

@@ -0,0 +1,5 @@
+++
title = "Static Checks"
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Kerodox"
description = "Contribution guidelines and instructions for Kerodox."
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Releases"
description = "Guidelines for the Kerolox release process."
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Website"
description = "How to contribute to the Kerolox website."
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Stdlib"
description = "How to contribute to the Kerolox standard library."
+++
TODO

View File

@@ -0,0 +1,5 @@
+++
title = "Examples"
template = "index.html"
paginate_by = 100
+++

View File

@@ -0,0 +1,5 @@
+++
template = "index.html"
sort_by = "title"
paginate_by = 5
+++

View File

@@ -0,0 +1,6 @@
+++
title = "Editor Integration"
description = "How to use Kerolox with third-party editors."
+++
TODO

View File

@@ -0,0 +1,5 @@
+++
title = "How to Install"
+++
TODO

View File

@@ -0,0 +1,6 @@
+++
title = "Why Kerolox?"
description = "What motivates Kerolox's development?"
+++
TODO

5
site/content/roadmap.md Normal file
View File

@@ -0,0 +1,5 @@
+++
title = "Roadmap"
+++
TODO

View File

@@ -1,7 +1,6 @@
+++
title = "Kerolox Sandbox"
description = "An interactive Kerolox development environment."
date = 2026-05-14
+++
- TODO: embed CodeMirror sandbox
TODO

View File

@@ -0,0 +1,7 @@
+++
title = "Tutorial"
description = "An interactive tour through Kerolox."
template = "index.html"
sort_by = "weight"
paginate_by = 100
+++

View File

@@ -23,6 +23,11 @@ url = "tutorial"
name = "Tutorial"
slash = true
[[extra.menu]]
url = "learn"
name = "Learn"
slash = true
[[extra.menu]]
url = "examples"
name = "Examples"