You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
437 B

<h1>{$page->title}</h1>
<table>
{foreach $sitemaps as $sitemap}
{if $last_type != $sitemap->type}
{assign var=last_type value=$sitemap->type}
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>
{$sitemap->type} \
{else}
<tr>
<td>
{/if}
</td>
<td>
<a title="{$sitemap->type} - {$sitemap->name}"
href="{$smarty.const.WWW_TOP}{$sitemap->loc}">{$sitemap->name}</a>
</td>
</tr>
{/foreach}
</table>