I have created a public domain/0BSD-licensed static website generator similar to werc, written in under 350 lines of Nim. It generates the websites by converting markdown documents into html pages that have links to other pages arranged in a nested list mirroring the directory structure of the site, title, subtitle, and footer. To generate your own site, just navigate to the root directory you want to become your website and run nerc. It will recurse through all the subdirectories finding markdown files and generating corresponding web pages.
Some things to note:
Here's the link: https://github.com/8bitprodigy/nerc
Thank you, I will soon have the displeasure of having to set up a website for something.
I would have probably tried throwing something similar together, but this already fits my taste so well, you even use 4 spaces for indentation.
I updated it last night so you can now configure your nerc site as a blog:
In config.json set the following options:
...
"index": "newest",
"sort": "newest",
// Optional - One, the other, or both:
"upper nav": false,
"lower nav": false,
...