if else condition in hbs file

i want to put if else condition in hbs file 
I tried for this code , but it is not working 
 {{#if  name 'Management Review'}}
                <a style="color:red"  href="#{{module_type}}/{{id}}" target="_blank">{{name}}</a>
                {{else}}
                <a href="#{{module_type}}/{{id}}" target="_blank">{{name}}</a>
                {{/if}} 
please suggest