底部帮助中心为例:

<!–{if $helps}–>
<!– {foreach from=$helps item=help_cat} –>
<dl>
  <dt><a href='{$help_cat.cat_id}’ title=”{$help_cat.cat_name}”><font color=”#FFFFFF”>{$help_cat.cat_name}</font></a></dt>
  <!– {foreach from=$help_cat.article item=item name=help_foreach} –>
  <!–{if $smarty.foreach.help_foreach.index <= 2} 帮助显示3条数–>
  <dd><a href=”{$item.url}” title=”{$item.title|escape:html}”>{$item.short_title}</a></dd>
  <!—{/if}–>
  <!– {/foreach} –>
</dl>
<!– {/foreach} –>
<!–{/if}–>