Skip to content

Instantly share code, notes, and snippets.

@sirius2k
Last active May 6, 2018 13:53
Show Gist options
  • Save sirius2k/3cef0b879520adb2029fbb412b7c79c6 to your computer and use it in GitHub Desktop.
Save sirius2k/3cef0b879520adb2029fbb412b7c79c6 to your computer and use it in GitHub Desktop.
mustache if/else example
boolean kiss = true;
boolean hug = true;
boolean slap = false;
{{#kiss}}
Kiss ...
{{/kiss}}
{{#hug}}
Hug ...
{{/hug}}
{{#slap}}
Hic Hic ...
{{/slap}}
Kiss ...
Hug ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment