Skip to content

Instantly share code, notes, and snippets.

@dshaw
Created June 1, 2010 05:26
Show Gist options
  • Save dshaw/420604 to your computer and use it in GitHub Desktop.
Save dshaw/420604 to your computer and use it in GitHub Desktop.
Mustache - Logic-less Templates
Hello {{name}}
You have just won ${{value}}!
{{#in_ca}}
Well, ${{taxed_value}}, after taxes.
{{/in_ca}}
{
name: "Chris",
value: 10000,
taxed_value: function() {
return this.value - (this.value * 0.4);
},
in_ca: true
}
Hello Chris
You have just won $10000!
Well, $6000, after taxes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment