30 lines
581 B
Markdown
Executable file
30 lines
581 B
Markdown
Executable file
# Homepage at sr-rolando.com
|
|
|
|
## Setup
|
|
|
|
```console
|
|
$ hugo mod init codeberg.org/sr-rolando/sr-rolando.com
|
|
& hugo mod tidy
|
|
```
|
|
|
|
In `hugo.toml`:
|
|
|
|
```toml
|
|
theme = ["github.com/theNewDynamic/gohugo-theme-ananke/v2"]
|
|
```
|
|
|
|
`make`-Targets:
|
|
|
|
* `make serve`: build locally and start development server
|
|
* `make deploy`: build and deploy (via `rsync`)
|
|
* `make clean`: remove the `public` folder that might have been created
|
|
|
|
## Neue Folge anlegen
|
|
|
|
```sh
|
|
hugo new post/`date '+%Y-%m-%d'`-title.md
|
|
```
|
|
|
|
## Related
|
|
|
|
Uses the [Ananke](https://github.com/theNewDynamic/gohugo-theme-ananke) theme.
|