diff options
author | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 22:54:00 +0200 |
---|---|---|
committer | Óscar Nájera <hello@oscarnajera.com> | 2018-07-15 22:54:00 +0200 |
commit | b3291eba545b8a90c39b201075441e0717b4d18b (patch) | |
tree | 5aa9643a050936ae44366f777ed3c28e2239b830 /layouts/index.json | |
parent | c7ec14c266e443ea7c455ca9a3dd10ba743c4752 (diff) | |
download | hugo-minimalist-theme-b3291eba545b8a90c39b201075441e0717b4d18b.tar.gz hugo-minimalist-theme-b3291eba545b8a90c39b201075441e0717b4d18b.tar.bz2 hugo-minimalist-theme-b3291eba545b8a90c39b201075441e0717b4d18b.zip |
skip noindex pages for json content
Diffstat (limited to 'layouts/index.json')
-rw-r--r-- | layouts/index.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/layouts/index.json b/layouts/index.json index c93f805..b8559e7 100644 --- a/layouts/index.json +++ b/layouts/index.json @@ -1,5 +1,7 @@ {{- $.Scratch.Add "index" slice -}} {{- range .Site.RegularPages -}} +{{- if ne .Params.noindex true -}} {{- $.Scratch.Add "index" (dict "title" .Title "tags" .Params.tags "categories" .Params.categories "contents" .Plain "permalink" .Permalink) -}} {{- end -}} +{{- end -}} {{- $.Scratch.Get "index" | jsonify -}} |