From 39bb38be324b18f33e85419558b5bd64c57a5770 Mon Sep 17 00:00:00 2001 From: Kim Oliver Drechsel Date: Sun, 16 Jan 2022 15:29:47 +0100 Subject: [PATCH] Add install step --- post_archive/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/post_archive/README.md b/post_archive/README.md index e8a39ff..196bbd1 100644 --- a/post_archive/README.md +++ b/post_archive/README.md @@ -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 +++ ...