A port of my personal web page acylx to radiance
The navbar uses a pretty specific styling, using multiple two item lists. Having to update the navbar in each template when I want to change it is stupid.
Closest thing we can do to static site generation, pre-generate all the pages before serving them, like in Reader
Articles ├── User 1 └── User 2 ├── Article 1.org └── Article 2.org
Uploading a new article would be just copying a file into a specific directory.
Using a database we can keep an inventory of the existing articles, and any changes to them. Maybe the biggest challenge in this approach is managing updating posts, maybe the adding of a UUID could help with this.
Process either markdown or org to generate the articles for the blog
Currently using templates to build the website, but a more modular and dynamic abstraction seems like a good idea