Ver código fonte

fix: search for index of Book type

George Cushen 5 anos atrás
pai
commit
5de4c11730
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      layouts/index.json

+ 2 - 1
layouts/index.json

@@ -1,8 +1,9 @@
 {{- /* Generate the search index. */ -}}
 {{- $index := slice -}}
 {{- $pages := site.RegularPages -}}
-{{- /* Add the index page of docs separately since it's not in RegularPages above. */ -}}
+{{- /* Add the index page of multi-page content separately since it's not in RegularPages above. */ -}}
 {{- $pages := $pages | union (where (where site.Pages "Kind" "section") "Type" "docs") -}}
+{{- $pages := $pages | union (where (where site.Pages "Kind" "section") "Type" "book") -}}
 {{- /* Add author pages to index so their bios can be searched. Hide empty `/authors/` node. */ -}}
 {{- $pages := $pages | union (where (where site.Pages "Section" "authors") "Params.superuser" "!=" nil) -}}