Created
March 11, 2010 09:29
-
-
Save sifu/328991 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
{{#a_object}} | |
<h1>{{title}}</h1> | |
<p>{{description}}</p> | |
<ul> | |
{{#a_list}} | |
<li>{{label}}</li> | |
{{/a_list}} | |
</ul> | |
{{/a_object}} |
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
var objects = { | |
a_object: { | |
title: 'this is an object', | |
description: 'one of its attributes is a list', | |
a_list: [{label: 'listitem1'}, {label: 'listitem2'}] | |
} | |
}; |
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
<h1>this is an object</h1> | |
<p>one of its attributes is a list</p> | |
<ul> | |
<li>listitem1</li> | |
<li>listitem2</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment