| Thursday 14 October 2004 8:41:08 pm 
                                                                 Neither option worked. The first one just output two double quotes (""), and the second did nothing. Here's all the code I'm working with: {let images=fetch(	'content', 
			'list', 
			hash(	'parent_node_id', $node.node_id,
				'class_filter_type',  'include',
				'class_filter_array', array('image' ) ) )}
{section name=images loop=$images}
{$:item.object.data_map.image.content.url|ezroot}
{/section}
{/let}As you can see, I'm just trying to print the URL for now. When I can do that, I'll put it in the IMG tag. I'm confused about the ".content" part of the path. Is "content" a sub-part of any attribute? Or just image attributes? For instance, for the first name, I just have to do: $node.object.data_map.fname Does the text datatype have a "content" sub-part? Deane |