Bulleted and sorted article list
This sample displays a bulleted list of article headlines. It also sorts the articles by headline and therefore the up-down buttons are eliminated by buttons="new,edit,hide,delete" clause in init_articles.
{* The first line outputs the title of the current section *}
<h1>{$current_obj->title}</h1>
{init_articles name="arts" order="title asc" buttons="new,edit,hide,delete"}
<ul>
{foreach from=$arts item=obj}
<li>{$obj->buttons}<a href="{$obj->href}">{$obj->title}</a></li>
{foreachelse}
{$arts_newbutton}
{/foreach}
</ul>
