Add CSS framework

This commit is contained in:
2025-10-01 12:33:55 +02:00
parent 34127035c5
commit ff0fca203c
38 changed files with 3147 additions and 40 deletions

View File

@@ -0,0 +1,7 @@
CHange the handling of static files:
- The entire `static/` directory is now compiled into the binary, not just specific files.
- The server serves static files from an in-memory table instead of reading from disk.
- The static files are linked by their paths under `/static/` in the HTML template.
- This includes the `/static/` part of the path
- The intention is that static assets can reference each other using relative paths. (e.g. CSS referencing images)
- The `www/` directory remains for user uploads, served from disk.