mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-31 22:41:53 +02:00
Merge commit '35dec7c96f7ee3eb17dd444f7067f0c776fb56ae'
This commit is contained in:
31
docs/content/en/methods/page/IsHome.md
Normal file
31
docs/content/en/methods/page/IsHome.md
Normal file
@@ -0,0 +1,31 @@
|
||||
---
|
||||
title: IsHome
|
||||
description: Reports whether the given page is the home page.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
related:
|
||||
- methods/page/IsNode
|
||||
- methods/page/IsPage
|
||||
- methods/page/IsSection
|
||||
returnType: bool
|
||||
signatures: [PAGE.IsHome]
|
||||
---
|
||||
|
||||
The `IsHome` method on a `Page` object returns `true` if the [page kind] is `home`.
|
||||
|
||||
```text
|
||||
content/
|
||||
├── books/
|
||||
│ ├── book-1/
|
||||
│ │ └── index.md <-- kind = page
|
||||
│ ├── book-2.md <-- kind = page
|
||||
│ └── _index.md <-- kind = section
|
||||
└── _index.md <-- kind = home
|
||||
```
|
||||
|
||||
```go-html-template
|
||||
{{ .IsHome }}
|
||||
```
|
||||
|
||||
[page kind]: /getting-started/glossary/#page-kind
|
Reference in New Issue
Block a user