Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 16, 2014 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/346aa1f6d2d76e18b4f0 to your computer and use it in GitHub Desktop.
Save devdays/346aa1f6d2d76e18b4f0 to your computer and use it in GitHub Desktop.
Object JavaScript - Sample Mustache Template
<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}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment