DogatorixBack to Repos / Aurelria
Created on 1/3/2026 and
last updated on 1/3/2026.
This repository has 5 commits, 5 of which were made by me.
Avaliability: Private
The Aurelria Codex
An Express + EJS website that reads like an alien compendium, framed as a codex about the Aurelria universe.
What you get
- Express server with EJS templates
- A âbook/pageâ UI with paper texture, glyph UI chrome, and a subtle HUD overlay
- Smooth page transitions (ink-bleed / page-turn effect) when navigating
- Keyboard flipping: J (next), K (previous)
- A tiny smoke test using Nodeâs built-in test runner + supertest
Run it
npm install
npm run dev
Then open: http://localhost:3000
Where to edit content
Content lives in:
src/content/catalog.jsonâ the top-level categories (Codex / Characters / Story)src/content/pages/*.htmlâ each page as a standalone HTML file with a small metadata header at the top
Page file format:
/*
slug: programs
title: Programs
category: codex
style: codex
excerpt: An artificial mechanical race...
*/
<h2>Overview</h2>
...
Routes:
/â cover (category shelves)/c/:categoryâ category index/p/:slugâ page entry
Theme / UI
- CSS:
public/css/handbook.css - JS transitions:
public/js/handbook.js - Layout:
src/views/layout.ejs
Tests
npm test