Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions power-pages-docs/configure/liquid/liquid-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,9 @@ Refers to the current portal request page. This object combines the attributes o

The page object provides access to things like the breadcrumbs for the current page, the title or URL of the current page, and any other attributes or related entities of the underlying Dataverse record.

> [!Note]
> When accessing a page as part of a `page.children` collection. The `entity` keyword must be used to access the underlying Dataverse record.

```
<ul class=breadcrumb>

Expand Down Expand Up @@ -925,7 +928,7 @@ The page object provides access to things like the breadcrumbs for the current p

<a class=list-group-item href={{ child.url | escape }}>

{{ child.title | escape }}
{{ child.title | escape }} (Last Modified: {{child.entity.modifiedon | escape }})

</a>

Expand All @@ -944,7 +947,7 @@ The page object provides access to things like the breadcrumbs for the current p
| Attribute | Description |
|------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| breadcrumbs | Returns the breadcrumb site map node objects for the page, starting from the site map root node and ending at parent. |
| children | Returns the child site map node objects of the page. |
| children | Returns the child site map node objects of the page, sorted by their Display Order. |
| parent | Returns the parent site map node of the page. If the page is the Home page, parent is null. |
| title | The title of the page. |
| url | The URL of the page. |
Expand Down