Since this website is generated by Hugo, and I’m not familiar with that, here’s how to create a new post:
- Install hugo (it’s in Alpine repositories)
- The config file is already here so no need to touch it
- Create the post from the default template
$ mkdir -p content
$ hugo new posts/hugo.md
- Write the markdown
- Test
$ hugo server -D
and go to https://localhost:1313
- If everything is good then remove the
draft: truefrom the markdown, compile the website withhugocommand and serve it.