Assuming I have a project with the following web pages (Please see the screen shot)
The uids of Red, Blue, Post and Blog Page are 1,2,3 and 4 respectively.
Now, I would want to define an array or some kind of list in Typoscript which will contain the titles of all the root webpages. And this array, I can use it in my FLUID template and display all the titles.
Example:
in TypoScript
arrayOfTitles= # titles of the pages with uid 1,2,3 and 4
in FLUID page
<f:for each="{arrayOfTitles}" as="foo"> <h1> {foo} </h1> </f:for>
Is this possbile