Meteor JS : The if syntax in html files

The syntax is :

{{#if conditional}}
{{else}}
{{/if}}

Example :

{{#if isShowFavorite}}
    <a href="#" class="btn btn-default btn-xs pull-right favorite" role="button" >
        <i class="fa fa-heart-o fa-icon"></i>
    </a>
{{else}}
    <a href="#" class="btn btn-default btn-xs pull-right unfavorite" role="button" >
        <i class="fa fa-heart fa-icon"></i>
    </a>
{{/if}}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s