Last active
September 7, 2016 17:02
-
-
Save mattbrailsford/7a2d81928d2fa400f9e79a3bbde58ed9 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
{ | |
"title" : "Home", | |
"alias" : "", | |
"view" : "HomePage", | |
"pages" : [ | |
{ | |
"title" : "Blog", | |
"alias" : "blog", | |
"view" : "BlogIndex", | |
"pages" : [ | |
{ | |
"#range 0 10" : { | |
"title" : "Blog Post {{@index}}", | |
"alias" : "blog-post-{{@index}}", | |
"view" : "BlogPost" | |
} | |
}, | |
{ | |
"#each $.pages" : { | |
"title" : "Blog Post {{@index}}", | |
"alias" : "blog-post-{{@index}}", | |
"view" : "BlogPost" | |
} | |
}, | |
{ | |
"#if name" : { | |
"title" : "Blog Post {{@index}}", | |
"alias" : "blog-post-{{@index}}", | |
"view" : "BlogPost" | |
}, | |
"#else" : { | |
"title" : "Blog Post {{@index}}", | |
"alias" : "blog-post-{{@index}}", | |
"view" : "BlogPost" | |
} | |
} | |
] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment