Home
{foreach var=part from=$this_category.path_parts}
{* Don't link to the category that is being viewed *}
{if $part.category_id == $this_category.category_id}
» {$part.name|htmlspecialchars}
{else}
{if $config.mod_rewrite}
» {$part.name|htmlspecialchars}
{else}
» {$part.name|htmlspecialchars}
{/if}
{/if}
{/foreach}
{* Load the featured links for this category *}
{links var=featured_links type=featured}
{* Only show if this category has 1 or more featured links *}
{if count($featured_links) > 0}
Featured Links
{* Loop through the featured links and display them *}
{foreach var=link from=$featured_links}
{/foreach}
{/if}
{* Load the regular links for this category *}
{links var=regular_links type=regular perpage=20 order="date_added DESC"}
{* Only show if this category has 1 or more links *}
{if count($regular_links) > 0}
Regular links: {$pagination.start|htmlspecialchars} - {$pagination.end|htmlspecialchars} of {$pagination.total|htmlspecialchars}