diff --git a/docs/en/reference/templates.md b/docs/en/reference/templates.md index 81b3ca064..ec83d3c9a 100644 --- a/docs/en/reference/templates.md +++ b/docs/en/reference/templates.md @@ -218,7 +218,10 @@ This loops over the children of a page, and generates an unordered list showing the `Title` property from each one. Note that `$Title` *inside* the loop refers to the `Title` property on each object that is looped over, not the current page. To refer to the current page's `Title` property inside the loop, you can do -`$Up.Title`. More about `Up` later. +`$Up.Title`. More about `Up` later. + +`$Me` can be used to refer to the current object context the template is rendered +with. ### Position Indicators @@ -245,7 +248,7 @@ custom column names based on your loop statement. Note that this works for any control statement (not just children). :::ss - <% loop Children %> + <% loop $Children %>