Skip to content

Instantly share code, notes, and snippets.

@phated
Created January 6, 2012 21:13
Show Gist options
  • Save phated/1572430 to your computer and use it in GitHub Desktop.
Save phated/1572430 to your computer and use it in GitHub Desktop.
JSON Template Object
var template;
template = [
{
div: {
div: {
div: {
a: "Project Name",
ul: [
{
li: {
a: "Home"
}
},
{
li: {
a: "About"
}
},
{
li: {
a: "Contact"
}
}
]
}
}
}
},
{
div: [
{
span: "another test"
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment