You can bind the class "active" to an element like this
<button {{bind-attr class="isActive:active"}}>Test</button>
Even static classes are possible:
<button {{bind-attr class=":btn isActive:active"}}>Test</button>
But how to get a button like this
<button {{bind-attr class=":btn :facet%id%"}}>Test</button>
to have the value of "id" bound to the static-value?
<button class="btn facet384"></button>