Add install step

This commit is contained in:
Kim Oliver Drechsel 2022-01-16 15:29:47 +01:00
parent 1e3879a6d3
commit 39bb38be32
Signed by: Kim
GPG Key ID: B9D907EF02605A07

View File

@ -6,6 +6,10 @@ Add an Archive of your Posts to your Website
1. Add the shortcode file `shortcodes/archive.html` to your project > `layouts/shortcodes`
2. Add `content/archive.md` to your project's `/content` directory
3. Add the default key/value to your `archetypes/default.md`
```yaml
summary: "Summary of {{ replace .Name "-" " " | title }}"
```
## Usage
@ -19,7 +23,7 @@ To reach your Archive you can add a new menu entry that links to it:
url = "/about/"
```
Add a summary (description) to each Post:
Add a summary (description) to a Post:
```toml
+++
...