feat: Add forking to guide
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
David Lapshin 2023-10-13 18:55:18 +00:00
parent 3230b4af29
commit 204eee79a1
Signed by: daudix
GPG key ID: 93ECF15D3053D81C
2 changed files with 9 additions and 11 deletions

View file

@ -7,18 +7,17 @@
## Installation ## Installation
First download this theme to your `themes` directory: First, fork it and download this theme to your `themes` directory:
```sh ```sh
cd themes git clone YOUR_FORK.git themes/duckquill
git clone https://git.exozy.me/daudix/duckquill.git
``` ```
...or add as submodule for easy updating (recommended if you already have git setup on site): ...or add as submodule for easy updating (recommended if you already have git setup on site):
```sh ```sh
cd themes git submodule init
git submodule add https://git.exozy.me/daudix/duckquill.git git submodule add YOUR_FORK.git themes/duckquill
``` ```
and then enable it in your `config.toml`: and then enable it in your `config.toml`:

View file

@ -46,17 +46,16 @@ zola init blog
git init git init
``` ```
3. Add Duckquill as Git submodule for easy updating: 3. Fork Duckquill
4. Add Duckquill as Git submodule for easy updating:
``` ```
git submodule init git submodule init
git submodule add YOUR_FORK.git themes/duckquill
``` ```
``` 5. Edit `config.toml` and enable Duckquill theme:
git submodule add https://git.exozy.me/daudix/duckquill.git themes/duckquill
```
4. Edit `config.toml` and enable Duckquill theme:
``` ```
theme = "duckquill" theme = "duckquill"