25 lines
892 B
Markdown
25 lines
892 B
Markdown
# blog.privacynerd.de
|
|
|
|
This is my [blog](https://blog.privacynerd.de/), which is run by hugo. The repository contains the hugo sources of it.
|
|
|
|
## Cloning
|
|
|
|
To clone and make some changes, you need to clone the repository. This one also contains [git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) (the re-terminal theme), that's why you should use the argument `--recurse-submodules`.
|
|
|
|
```sh
|
|
git clone --recurse-submodules https://git.privacynerd.de/git.privacynerd.de/blog.privacynerd.de blog
|
|
cd blog
|
|
```
|
|
|
|
## Building
|
|
|
|
To build, just run the below command. It will generate a new html in a fresh public folder.
|
|
|
|
```sh
|
|
rm -r public/ && hugo build --minify --printI18nWarnings
|
|
```
|
|
|
|
## Acknowledgements
|
|
|
|
Favicon(s) generated by the [RealFaviconGenerator](https://realfavicongenerator.net/) out of my [original.png](static/original.png) (I drew this when I was a young child!).
|