Files
2026-07-03 10:43:53 +02:00

811 B

title, description, categories, keywords, params
title description categories keywords params
IsBranch Reports whether the given page is a branch.
functions_and_methods
returnType signatures
bool
PAGE.IsBranch

{{< new-in 0.163.0 />}}

{{% glossary-term branch %}}

content/
├── books/
│   ├── book-1/
│   │   └── index.md    <-- kind = page      IsBranch = false
│   ├── book-2.md       <-- kind = page      IsBranch = false
│   └── _index.md       <-- kind = section   IsBranch = true
├── tags
│   ├── fiction
│   │   └── _index.md   <-- kind = term      IsBranch = true
│   └── _index.md       <-- kind = taxonomy  IsBranch = true
└── _index.md           <-- kind = home      IsBranch = true
{{ .IsBranch }}