From 2584e21c5f36fa59028ca78cf867c44461ca5053 Mon Sep 17 00:00:00 2001 From: jk Date: Tue, 5 May 2020 21:49:31 +0100 Subject: [PATCH] adding categories to section pages --- layouts/_default/section.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/layouts/_default/section.html b/layouts/_default/section.html index 3d174393..3ac423c6 100644 --- a/layouts/_default/section.html +++ b/layouts/_default/section.html @@ -13,6 +13,13 @@ {{ .Content }} +
+
+ {{ with .Page.Params.Blog }}{{ partial "taxonomy/blog.html" . }}{{ end }} + {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }} + {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }} +
+

{{ end }}