Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created November 26, 2011 05:05
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 iaindooley/1395058 to your computer and use it in GitHub Desktop.
Save iaindooley/1395058 to your computer and use it in GitHub Desktop.
Mustache has logic
<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