From 4b59058e95633a67f7d1096513921bd9db73350d Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 16 Nov 2025 11:56:44 -0700 Subject: [PATCH] Add partials for tags and categories based on the now finished series partial. --- layouts/partials/categories.html | 10 ++++++++++ layouts/partials/tags.html | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 layouts/partials/categories.html create mode 100644 layouts/partials/tags.html diff --git a/layouts/partials/categories.html b/layouts/partials/categories.html new file mode 100644 index 0000000..d7b46a6 --- /dev/null +++ b/layouts/partials/categories.html @@ -0,0 +1,10 @@ +{{ with .Params.categories }} +

+ Series: + {{ range . -}} + {{.}} + {{ end }} +

+{{ end }} diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html new file mode 100644 index 0000000..5ecd9eb --- /dev/null +++ b/layouts/partials/tags.html @@ -0,0 +1,10 @@ +{{ with .Params.tags }} +

+ Series: + {{ range . -}} + {{.}} + {{ end }} +

+{{ end }}