Created
August 15, 2012 00:11
-
-
Save d4tocchini/3354133 to your computer and use it in GitHub Desktop.
This file contains 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
pageA = | |
name: 'pageA' | |
contentInlets: [ | |
query: | |
strength: 'require' | |
method: 'next' | |
params: {type:'story', featured:true} | |
contentKey: 'story1' | |
clone: false | |
, | |
query: | |
strength: 'require' | |
method: 'next' | |
params: {type:'story', featured:true} | |
contentKey: 'story2' | |
clone: false | |
] | |
template: G.template """ | |
{{view App.Tile id="story1TEST" contentBinding="view.content.story1"}} | |
{{view App.Tile id="story2TEST" contentBinding="view.content.story2"}} | |
""" | |
pageB = | |
name: 'pageB' | |
contentInlets: [ | |
query: | |
strength: 'require' | |
method: 'next' | |
params: {type:'story'} | |
contentKey: 'story1' | |
clone: false | |
, | |
query: | |
strength: 'require' | |
method: 'next' | |
params: {type:'image'} | |
contentKey: 'image1' | |
clone: false | |
] | |
template: G.template """ | |
{{view App.Tile contentBinding="view.content.story1"}} | |
{{view App.Tile contentBinding="view.content.image1"}} | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment