Last active
August 29, 2015 13:58
-
-
Save sorenmalling/10022024 to your computer and use it in GitHub Desktop.
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
| prototype(TYPO3.Neos:PrimaryContent) { | |
| blogPost { | |
| condition = ${q(documentNode).is('[instanceof Meteko.Homepage:Post]')} | |
| type = 'Meteko.Homepage:Post' | |
| } | |
| someThingElse { | |
| condition = ${q(documentNode).is('[instanceof Meteko.Homepage:Event]')} | |
| renderPath = 'somepath' | |
| } | |
| # Default taken from DefaultTyposcript.ts2 | |
| default { | |
| @position = 'end 9999' | |
| condition = TRUE | |
| renderPath = '/page' | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment