mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 12:12:37 +00:00
811 B
811 B
title, description, categories, keywords, params
| title | description | categories | keywords | params | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| IsBranch | Reports whether the given page is a branch. |
|
{{< 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 }}