15 lines
404 B
Plaintext
15 lines
404 B
Plaintext
|
|
<h2>{$category.title}</h2>
|
||
|
|
{if ($jscript != '')}
|
||
|
|
{$jscript}
|
||
|
|
{/if}
|
||
|
|
{if ($items === null)}
|
||
|
|
<p class="descriptiveText">{i18n}No items in the category.{/i18n}</p>
|
||
|
|
{else}
|
||
|
|
<dl class="panel_menu">
|
||
|
|
{foreach item=aItem from=$items}
|
||
|
|
<dt><a href="{ktLink base="admin.php" subpath="`$aItem.fullname`"}">{$aItem.title}</a></dt>
|
||
|
|
<dd class="descriptiveText">{$aItem.description}</dd>
|
||
|
|
{/foreach}
|
||
|
|
</dl>
|
||
|
|
{/if}
|