XaminProject / handlebars.php

Handlebars processor for php
331 stars 132 forks source link

Add "else" block to "unless" helper #39

Closed JustBlackBird closed 10 years ago

JustBlackBird commented 10 years ago

I've added "else" block to "unless" helper as in JavaScript version of Handlebars. One can use the following in templates:

{{#unless condition}}
   The condition is "falsy"
{{else}}
   The condition is true
{{/unless}}
everplays commented 10 years ago

Thanks.