I'm editing a template file which is currently outputting all the content using:
{$module_result.content}
I want to output the attributes within the folder (ie."name", "short_description" etc) separately however. I've tried using:
{def $pagelayout_node=fetch(content,node,hash(node_id,$module_result.node_id))}
and then
{$pagelayout_node.name}
and {$pagelayout_node.short_description}
But I am just getting the name of the folder as it's called in the tree menu. I want the attributes "name", "short_description" etc from the folder itself instead. I guess I am missing a step, I'm just not sure what it is.