Tuesday 02 March 2004 9:14:17 am
Here is my code. I would like to display the folder description of a child folder to the Links folder. Is it possible? <h1>Useful links</h1>
{let children=fetch( content, list, hash( parent_node_id, $node.node_id,
sort_by, $node.sort_array,
limit, 7,
class_filter_type, include,
class_filter_array, array( 'folder','link') ) )} {* LOOP: For each child of the node... *}
{section name=Child loop=$children} {* Display the content of the child using a line-view template. *}
{node_view_gui view=line content_node=$Child:item}
<hr>
{* End of loop. *}
{/section}
{* End of namespace. *} {/let}
|