Compare commits

..

No commits in common. "39bb38be324b18f33e85419558b5bd64c57a5770" and "8580f31ab0877f45364ad88c91b95ae46f68d7ff" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -6,10 +6,6 @@ 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
@ -23,7 +19,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 a Post: Add a summary (description) to each 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: "Summary of {{ replace .Name "-" " " | title }}" summary: "Enter your Post Summary here."
... ...
--- ---