This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/product_cat/pre_t_CategoryDrill.tpl
2011-05-03 09:49:01 +10:00

27 lines
856 B
Smarty

<!-- Show the category drill-down -->
{if $product_cat_arr}
{foreach from=$product_cat_arr item=record}
<table width=100% border="0" cellspacing="1" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart" height="25">
<tr valign="top">
<td><a href="{$URL}?_page=product_cat:user_menu">{osb f=tt module=product_cat method=view}</a>
{foreach from=$parent_cat item=cat}
&gt; <a href="?_page=product_cat:t_{$cat.template}&id={$cat.id}">{$cat.name}</a>
{/foreach}
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
{/foreach}
{/if}