Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.
Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.
The standalone version can be used out of the box and there are integrations for TYPO3 and Neos
It looks like this
// this
<f:count>{myArray}</f:count>
// or
{myArray -> f:count()}
Official documentation: https://github.com/TYPO3Fluid/Fluid
Since 2017-06 there is also Fluid for dotnet whose syntax is not related to php-fluid but which aims to be close to liquid.