From 5393b965fdffb89bf14004fbb287810afc89c9a8 Mon Sep 17 00:00:00 2001 From: Ryan H Date: Sun, 11 Dec 2022 20:53:05 -0800 Subject: [PATCH 1/3] fixed config.toml so site renders like tutorial --- config.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 8d4a4f5..47c4ff1 100644 --- a/config.toml +++ b/config.toml @@ -4,5 +4,13 @@ languageCode = 'en-us' [params] # "relatedtext" is the text that appears above the tag list at the bottom of pages. - #relatedtext = "Related:" + relatedtext = "Related" favicon = "/favicon.ico" + + #list items + datesinlist = true + authorsinlist = true + + #footer items + nextprev = true + taglist = true \ No newline at end of file From 685cc169ee43ffd247f3a569b979dd99cb061be6 Mon Sep 17 00:00:00 2001 From: Ryan H Date: Sun, 11 Dec 2022 20:53:31 -0800 Subject: [PATCH 2/3] if more than one author it delimits correctly --- layouts/_default/list.html | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/layouts/_default/list.html b/layouts/_default/list.html index b05c0a2..601fc08 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -5,13 +5,16 @@ {{ .Content }} {{- end }} From dc6085dc05e4c687c9731e8691f4c5e7839af258 Mon Sep 17 00:00:00 2001 From: Ryan H Date: Sun, 11 Dec 2022 21:30:17 -0800 Subject: [PATCH 3/3] missed the rss bool --- config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 47c4ff1..e884199 100644 --- a/config.toml +++ b/config.toml @@ -13,4 +13,5 @@ languageCode = 'en-us' #footer items nextprev = true - taglist = true \ No newline at end of file + taglist = true + showrss = true \ No newline at end of file