This is my personal Markdown-based website and blog, using Zola to generate static-site files.
If you want to use this structure to create your site, simply clone the repo and rename it to something meaningful:
git clone https://git.sr.ht/~cmc/cleberg.net
mv cleberg.net <your-website>
cd <your-website>
Make changes to the config, templates, static, and content files to make this your own website. You can preview the files, with live updates:
zola serve
When you're finished with your updates, build the static files:
zola build
Finally, copy the new static files to your web server location:
sudo cp -r public/* /path/to/<your-website-directory>