From c32906296a32f2eb8d8a8842d11f16835fe43f7c Mon Sep 17 00:00:00 2001 From: "roneo.org" Date: Wed, 5 Jan 2022 08:22:08 +0100 Subject: [PATCH] offTheRecord: exclude posts from the search results --- layouts/_default/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_default/index.json b/layouts/_default/index.json index feeb437d..c6addbf3 100644 --- a/layouts/_default/index.json +++ b/layouts/_default/index.json @@ -1,6 +1,6 @@ {{- $.Scratch.Add "index" slice -}} {{- range site.RegularPages -}} - {{- if and (not .Params.searchHidden) (ne .Layout `archives`) (ne .Layout `search`) }} + {{- if and (not .Params.searchHidden) (ne .Params.offTheRecord true) (ne .Layout `archives`) (ne .Layout `search`) }} {{- $.Scratch.Add "index" (dict "title" .Title "content" .Plain "permalink" .Permalink "summary" .Summary) -}} {{- end }} {{- end -}}