I’m discovering Neos since last week and want to congratulate your for the amazing and exciting tool you are creating.
Here is my question.
My root / site node stores “configuration” properties for the whole site, like a reference to the root node storing the footer navigation shortcuts.
I made the Menu works with the following TS : footerMenu = TYPO3.Neos:Menu { entryLevel = 2 @context.footerNavigationRoot = ${q(site).property('footerNavigationRoot')[0]['nodeData']['properties']['uriPathSegment']} startingPoint = ${q(site).children('[uriPathSegment="' + footerNavigationRoot + '"]').get(0)} }
I guess the “@context.footerNavigationRoot” declaration is not very elegant. Is there any better method to define the startingPoint with this reference to a node ?