Skip to content

Instantly share code, notes, and snippets.

@saw
Created September 18, 2012 20:52
Show Gist options
  • Save saw/3745816 to your computer and use it in GitHub Desktop.
Save saw/3745816 to your computer and use it in GitHub Desktop.
Rendering mustache on server with mustache.php & client with handlebars
Data:
{
foo:true,
bar: "baz"
}
{{#foo}}
<h1>{{bar}}</h1>
{{/foo}}
with mustache:
<h1>Baz</h1>
With handlebars
<h1></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment