I have a problem passing argument from a layout to a template.
I have this code in layout file myext/Resources/Private/Layouts/Layout.html :
<f:for each="{news}" as="newsItem" iteration="iterator">
<f:debug title="Section content newsItem">{newsItem}</f:debug>
<f:render section="content" arguments="{newsItem: newsItem}" />
</f:for>
And this code in Template file myext/Resources/Private/Layouts/Template.html :
<f:layout name="MyLayout" />
<f:section name="content">
<f:debug title="Section content newsItem">{newsItem}</f:debug>
<f:render partial="ListItem" arguments="{newsItem:newsItem}" />
</f:section>
{newsItem} is filled in layout but not in template, I used TYPO3 V13 with latest version.
It used to work with TYPO3 V12.
I have a problem passing argument from a layout to a template.
I have this code in layout file myext/Resources/Private/Layouts/Layout.html :
And this code in Template file myext/Resources/Private/Layouts/Template.html :
{newsItem} is filled in layout but not in template, I used TYPO3 V13 with latest version.
It used to work with TYPO3 V12.