Saturday 12 April 2003 9:44:35 am
Hello, I've spent several hours configuring EZPublish and my templates. My site is almost finished and I'm quite content with it, except for the following: I'd like to show links to all folders in the folder that a user is watching. This can be done with the following code:
{* set children variable *}
{let children=fetch('content',list,hash(parent_node_id,$node.node_id))}
<h1>{$node.name}</h1>
{* loop children and show line view *}
{section name=Child loop=$children}
{node_view_gui view=line content_node=$Child:item}<br>
{/section} {/let} The problem here is that this code shows *all* childs of the selected node: So if there are articles and folders in the selected node, those are both shown. Can anyone tell me how I can filter that only links to *folders* are shown? TIA, Maarten
|