Compare commits

..

2 Commits

Author SHA1 Message Date
39bb38be32
Add install step 2022-01-16 15:29:47 +01:00
1e3879a6d3
Change default summary text 2022-01-16 15:29:34 +01:00
2 changed files with 6 additions and 2 deletions

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` 1. Add the shortcode file `shortcodes/archive.html` to your project > `layouts/shortcodes`
2. Add `content/archive.md` to your project's `/content` directory 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 ## Usage
@ -19,7 +23,7 @@ To reach your Archive you can add a new menu entry that links to it:
url = "/about/" url = "/about/"
``` ```
Add a summary (description) to each Post: Add a summary (description) to a Post:
```toml ```toml
+++ +++
... ...

View File

@ -1,7 +1,7 @@
--- ---
... ...
## Add the line below to your default.md ## Add the line below to your default.md
summary: "Enter your Post Summary here." summary: "Summary of {{ replace .Name "-" " " | title }}"
... ...
--- ---