| I don't know if it has its place here but for a minimalist static website, here is my approach: - create a simple html template using simple.css [0] - write markdown files - wrap pandoc [1] in a simple bash script to manually convert markdown to html - and that's it. By minimalist, I mean: no script, no component, no database, no react, no SEO. The result is a minimalist website that you write in markdown. It's very limited compared to full-featured frameworks, but it can do the job for a simple website. Here is mine: [2] (I'm not a web developer at all). [0] https://github.com/kevquirk/simple.css [1] https://pandoc.org/ [2] https://remipch.github.io/ |