<b><?=$this->facetDisplay?></b>
<ul class="content-box">
<?php
if (isset($this->facets[$this->facetName])) {
    foreach ($this->facets[$this->facetName] as $bucket) {
        if ($bucket["selected"] === false) {
?>
    <li><a href="<?=$bucket["url"]?>"><?=$bucket["value"]?></a> (<?=$bucket["count"]?>)</li>
<?php
        } else {
?>
    <li><a class="active" href="<?=$bucket["url"]?>"><em>&times;</em> <?=$bucket["value"]?></a></li>
<?php
        }
    }
}
?>
</ul>
