Thursday 24 July 2003 11:40:04 am
Find the id of article#2, then, in the template for the containing folder, fetch only this node (assuming you've created an override template for the folder). Let's say the article's node_id is 100, then you'd write something like this in the template (for the containing folder): ---
{let article_2=fetch('content','node',hash(node_id,100))}
{$article_2:item.data_map.title.content} ....and so on.... {/let} Not sure if this is what you ment, but I hope it helps.
|