Feel that surely this topic has been covered, but I have not found exactly what I’m looking for
I am trying to retrieve the titles and text of all the nodes in a stream-list. In the following example, I am using a simplified version:
<$set name="parentTitle" value="999">
<<parentTitle>>
<$list filter="[[<parentTitle>]get-stream-nodes[]]">
<div>
|
{{!!title}}
|
{{!!text}}
</div>
</$list>
If I can understand how to properly pass this variable into the list filter, I should be able to solve the larger problem I’m having.