Skip to content

Instantly share code, notes, and snippets.

@karolk
Created April 2, 2012 21:33
Show Gist options
  • Save karolk/2287378 to your computer and use it in GitHub Desktop.
Save karolk/2287378 to your computer and use it in GitHub Desktop.
moustache.js template example
<h1>{{header}}</h1>
{{#bug}}
{{/bug}}
{{#items}}
{{#first}}
<li><strong>{{name}}</strong></li>
{{/first}}
{{#link}}
<li><a href="{{url}}">{{name}}</a></li>
{{/link}}
{{/items}}
{{#empty}}
<p>The list is empty.</p>
{{/empty}}
{
"header": "Colors",
"items": [
{"name": "red", "first": true, "url": "#Red"},
{"name": "green", "link": true, "url": "#Green"},
{"name": "blue", "link": true, "url": "#Blue"}
],
"empty": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment