# Blog 🌐
[](https://www.gohugo.io)
[](https://brainmade.org)
[](https://choosealicense.com/licenses/cc-by-sa-4.0/)
[](https://buymeacoffee.com/nicolabelluti)
[](https://git.nicolabelluti.me/nicolabelluti/blog/actions/?workflow=build-and-publish.yaml)
> My personal blog, powered by [Hugo](https://gohugo.io/) and the
> [Blowfish](https://blowfish.page/) theme
## Building
Install [Hugo](https://gohugo.io/), then run:
```shell
git clone --recursive https://git.nicolabelluti.me/nicolabelluti/blog.git
cd blog
hugo --minify --gc
```
You can find the source code of the website in the `public/` directory
If you want to start the dev server, you need to run:
```shell
hugo server --buildDrafts --buildFuture
```
## Create a new article
To create a new article using the default structure
(`posts///`), use this command:
```shell
hugo new content/posts/$(date +%Y/%m)//index.md
```