From 649ff965f7faa4f403c93d4ed066f1c1ae93ef99 Mon Sep 17 00:00:00 2001
From: Jody Farnden <38027671+jodyfarnden@users.noreply.github.com>
Date: Wed, 1 Apr 2026 16:59:25 +1030
Subject: [PATCH 1/2] Updated liquid-objects.md to add page.children data
access example
Added an example of accessing the underlying Dataverse record when accessing the page data as part of a page.children collection.
---
power-pages-docs/configure/liquid/liquid-objects.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/power-pages-docs/configure/liquid/liquid-objects.md b/power-pages-docs/configure/liquid/liquid-objects.md
index a70e2a4d6..c87ba597d 100644
--- a/power-pages-docs/configure/liquid/liquid-objects.md
+++ b/power-pages-docs/configure/liquid/liquid-objects.md
@@ -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.
+
```
@@ -925,7 +928,7 @@ The page object provides access to things like the breadcrumbs for the current p
-{{ child.title | escape }}
+{{ child.title | escape }} (Last Modified: {{child.entity.modifiedon | escape }})
From 3419e3b8085ceff08cd18d0cc8bda3729ee03504 Mon Sep 17 00:00:00 2001
From: Jody Farnden <38027671+jodyfarnden@users.noreply.github.com>
Date: Wed, 1 Apr 2026 17:19:29 +1030
Subject: [PATCH 2/2] Update liquid-objects.md page section to specify
page.children ordering
---
power-pages-docs/configure/liquid/liquid-objects.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/power-pages-docs/configure/liquid/liquid-objects.md b/power-pages-docs/configure/liquid/liquid-objects.md
index c87ba597d..6cf9456c0 100644
--- a/power-pages-docs/configure/liquid/liquid-objects.md
+++ b/power-pages-docs/configure/liquid/liquid-objects.md
@@ -947,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. |