Add typed text pages; serve CSS as compiled-on-demand /css/main.css

Sidecar-less page bundles whose directory ends in a MediaType extension
(.txt/.css/.xml/.json/.js) now render raw (no HTML layout, autoescape off),
are served with that extension's Content-Type, and cache as a flat file
(public/cache/<path>) so Apache serves them directly via a new .htaccess
rule. They're excluded from the content index.

CSS becomes one of these: novaconium/pages/css/main.css/ holds index.twig
({{ sass('main.sass') }}), main.sass, and _colors.sass. App\SassExtension's
sass() Twig function resolves the entry file through the overlay and shells
out to Dart Sass on a cache miss; Lib\SassCompiler wraps the CLI. This
drops the committed App/css/main.css build artifact and the public/css
bind mount. Override styling by copying the whole bundle to App/pages/.

Also ship robots.txt and humans.txt as framework bundles, and drop the
php -S dev router (public/router.php) - Docker/Apache only now.

New: novaconium/src/MediaType.php, SassExtension.php, lib/SassCompiler.php.
Moved: novaconium/sass/ -> novaconium/pages/css/main.css/ (+ App/sass merged).
Docs: AGENTS.md, new /admin/docs/text-pages, and styling/caching/docker/
design-notes/getting-started/project-layout/config docs updated.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018Q9cAXC9xcXYnmP7qjsnw7
This commit is contained in:
code
2026-09-10 20:58:37 +00:00
co-authored by Claude Sonnet 5
parent 551efc0c36
commit f2724972af
33 changed files with 442 additions and 720 deletions
+5 -6
View File
@@ -12,18 +12,17 @@ This project is currently in beta testing. The issue tracker is at https://git.4
```bash
PROJECTDIR="${PROJECTDIR:-/data}"
mkdir -p "$PROJECTDIR"/{css,novaconium/{cache,uploads,data}}
mkdir -p "$PROJECTDIR"/novaconium/{cache,uploads,data}
docker pull git.4lt.ca/4lt/novaconium:2.0.0-beta
docker run -d \
--name novaconium \
-p 8080:80 \
-v "$PROJECTDIR":/var/www/html/App \
-v "$PROJECTDIR"/css:/var/www/html/public/css \
-v "$PROJECTDIR"/novaconium/cache:/var/www/html/public/cache \
-v "$PROJECTDIR"/novaconium/uploads:/var/www/html/public/uploads \
-v "$PROJECTDIR"/novaconium/data:/var/www/html/data \
-v "$(pwd)/$PROJECTDIR"/novaconium/App:/var/www/html/App \
-v "$(pwd)/$PROJECTDIR"/novaconium/cache:/var/www/html/public/cache \
-v "$(pwd)/$PROJECTDIR"/novaconium/uploads:/var/www/html/public/uploads \
-v "$(pwd)/$PROJECTDIR"/novaconium/data:/var/www/html/data \
git.4lt.ca/4lt/novaconium:2.0.0-beta
```