20 lines
448 B
Markdown
20 lines
448 B
Markdown
# verry.org with hugo!
|
|
|
|
This website was build with the hugo amazing tool!
|
|
|
|
## Themes
|
|
|
|
This hugo website use `hugo-scroll`.
|
|
To do that use submodules
|
|
|
|
```
|
|
git pull --recurse-submodules
|
|
```
|
|
|
|
# Run
|
|
|
|
```bash
|
|
hugo --minify
|
|
for i in $(find public -type f \( -iname \*.js -o -iname \*.css -o -iname \*.html \) );do zstd -f --ultra -k $i ; gzip -f -9 -k $i ; brotli -f -k $i;done
|
|
rsync -arvz --delete public/ peach.verry.org:/srv/www/yann/verry.org/
|
|
```
|