Wednesday 16 February 2005 1:37:30 pm
I want to have each category/(node or section) to have their articles listed in the Left Column as a link. How can I accomplish this? The closest I have gotten is with this piece of code:
{*This code list the items in the current folder without links to the items.*}
{* set children variable *}
{let children=fetch('content',list,hash(parent_node_id,$node.node_id))}
<h2>{$node.name}</h2>
{* loop children and print name *}
{section name=Child loop=$children}
<ul>
<li>{$Child:item.name}</li>
</ul>
{/section}
{/let}
thanks -neil
|