Iterate through multifield
I have a multifield component which saves to the page like below:

And I have written this code to iterate through the values and display the nodes in a list:
<sly data-sly-test="${resource.hasChildren}" data-sly-list="${resource.getChildren}">
<ul data-sly-test="${item.name == 'items'}" data-sly-list="${item.getChildren}">
<li><a href="${item.path @ extension='html'}">${item.title}</a></li>
</ul>
</sly>
The problem is that ${item.path} returns the path of the resource and not the value of 'path' (/content/Page1).
The easiest solution would be to change the property name to 'pagePath' but I was wondering if there was another way to retrieve without changing the name.
