{{#if note.favorited}}
<a class="toggle-icon toggled" href="">
<i class="fa fa-star"></i>
</a>
{{else}}
<a class="toggle-icon" href="">
<i class="fa fa-star"></i>
</a>
{{/if}}
As you can see, the only thing that changes is the toggled
css class. Can this code be shortened?