<div class="secondaryContent showcaseCategoryList">
<h3>{xen:phrase nflj_showcase_categories}</h3>
<xen:if is="{$categories}">
<ol>
<xen:foreach loop="$categories" value="$_category">
<li class="{xen:if '{$_category.category_id} == {$selectedCategoryId}', selected}">
<a href="{xen:link showcase/category, $_category}" {xen:if $_category.category_description, 'title="{xen:helper striphtml, $_category.category_description}" class="Tooltip" data-tipclass="showcaseCategoryTooltip"'}>{$_category.category_name}</a>
<span class="count">{xen:number $_category.item_count}</span>
</li>
</xen:foreach>
</ol>
<xen:else />
<div>{xen:phrase nflj_showcase_no_categories}</div>
</xen:if>
</div>