summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał M. Sapka <michal@sapka.me>2023-02-20 15:38:24 +0100
committerMichał M. Sapka <michal@sapka.me>2023-02-20 15:38:24 +0100
commit18c56020fe06f89e4a226db3662610b5c8755339 (patch)
treef06ff73cbf4bc09d1b1b7c5249541ec1f2d19de1
parent79c081ddc59014cd4eb56c78ca4d8ab8403048d1 (diff)
chore: add txt list
-rw-r--r--config.toml9
-rw-r--r--layouts/_default/list.txt12
2 files changed, 16 insertions, 5 deletions
diff --git a/config.toml b/config.toml
index c236da4..2d7e16b 100644
--- a/config.toml
+++ b/config.toml
@@ -6,3 +6,12 @@ tagline = "Hello do d-s's weblog!"
defaultDescription = "Welcome to my blog!"
plausibleDomain = "d-s.sh"
+[outputFormats.TXT]
+ mediaType = "text/plain"
+ sufix = "txt"
+ isPlainText = true
+
+[outputs]
+ home = [ "HTML", "RSS", "TXT" ]
+ term = [ "HTML" ]
+ taxonomy = [ "HTML" ]
diff --git a/layouts/_default/list.txt b/layouts/_default/list.txt
index 047ea33..430a2d2 100644
--- a/layouts/_default/list.txt
+++ b/layouts/_default/list.txt
@@ -1,5 +1,7 @@
-{{- range where .Pages "Params.category" "meme"}}
- {{- $imageUrl := .Param "image" }}
- {{- $image := resources.Get $imageUrl }}
- {{- $image.Permalink }}
-{{ end }}
+{{- range .Pages.GroupBy "Section" }}
+ {{- with $.Site.GetPage "section" .Key }}
+ {{- range .Pages }}
+ {{ .Permalink }}
+ {{- end }}
+ {{- end }}
+{{- end }}