I\'m using Twitter Bootstrap for navigation in my Ember.js app. Bootstrap uses an active class on the li tag that wraps navigation links, rather th
active
li
You can skip extending a view and use the following.
{{#linkTo "index" tagName="li"}}Homes{{/linkTo}}
Even without a href Ember.JS will still know how to hook on to the LI elements.