This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* In Fusion | |
*/ | |
foo = Neos.Fusion:Renderer { | |
type = 'Vendor.Site:Foo' | |
element { | |
...${myContextVariable} | |
...${myOtherContextvariable} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<f:form action="upload" enctype="multipart/form-data"> | |
<f:form.upload name="resources[]" additionalAttributes="{multiple: true}" /> | |
<f:form.submit value="Upload new resources"/> | |
</f:form> |