// special keyword "children", references the children of the closest Template node in the current page
if ("children".equals(part)) {
if (parts.length == 1) {
final Template template = ((DOMNode) entity).getClosestTemplate(_page);
if (template != null) {
return template.getChildNodes();
}
}
continue;