Hugo - the tool i used to make this site
Hugo is a static site generator that read content files written in Markdown (.md), applies layouts and templates from themes or custom code , compiles everything into static HTML ,CSS and JS files. Overview A typical Hugo project has this structure: my-hugo-site/ ├── archetypes/ ├── content/ ├── layouts/ ├── static/ ├── themes/ ├── public/ └── config.toml Archetypes The archetypes/ folder contains template files that Hugo uses when creating new content. When you create new content using Hugo’s command line tool, these templates provide the starting structure for your new pages or posts. ...