Initial HUGO setup

This commit is contained in:
2024-05-29 21:24:26 +01:00
parent 15e5f22574
commit 511d42ab6b
20 changed files with 1369 additions and 0 deletions

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
## Start Server
```sh
hugo server --disableFastRender -D #D to include drafts
```
## New Post
```sh
hugo new content directory/name.md
```
## Generate Site to Publish
```sh
hugo
```