File-based routing
A directory under App/pages/ is a route. [param] segments capture into $params. No route table to maintain.
A tiny, Hugo-flavored PHP micro-framework: file-based routing, Twig templates, and static caching — no Composer, no build step. This page lives at App/pages/index.twig; start editing there.
A directory under App/pages/ is a route. [param] segments capture into $params. No route table to maintain.
Drop an index.php next to any index.twig for real logic, or return a Response to short-circuit templating entirely.
Sidecar-less pages render once and get served straight from Apache afterwards — this page included.
Meta description, canonical links, Open Graph, and Twitter Card tags ship by default, all overridable per page.
Built-in analytics tracking and a multi-user session login for /admin/* — both off until you turn them on in App/config.php.
App/ is checked before novaconium/ for every page, layout, and Lib\ class — override by dropping a file at the same relative path.