I am using Sightly with Sling 8 ( not AEM ). I have the following template:
<div data-sly-list.child="${resource.listChildren}">
${child.name} | ${child.path} | ${child.properties['jcr:title'] || 'no title'}
</div>
The output ( for a single child ) is
hello_world | /content/blog/posts/hello_world | no title
I know there is a jcr:title property on the child resource as I have confirmed it using an HTTP call.
How can I access the properties on the child
object?