Ok, so I know that mustache templates don't have logic, but how do I implement this:
<?php
if ($a || $b) {
echo $c, $d, $e;
}
?>
... using mustache template syntax? The best I can come up with is this:
{{#a}}
{{c}}{{d}}{{e}}
{{/a}}
{{^#a}}
{{#b}}
{{c}}{{d}}{{e}}
{{/b}}
{{/a}}
... which is obviously hideous and requires me to duplicate anything inside the 'if'.
Any ideas?