Wednesday 30 July 2003 4:22:48 am
In my main template i have:
[...]
<div id="body">
<h1>My H1</h1>
{$module_result.content}
{* set children variable *}
{let children=fetch('content',list,hash(parent_node_id,$node.node_id))}
{section name=Child loop=$children max=2}
<h2>{$Child:item.name}</h2>
{$Child:item.data_map.lead_in.content.output.output_text}
<span><a href={concat("/content/view/full/",$Child:item.node_id)|ezurl}>Read more...</a></span>
</div>
{/section} [...] If in my xml fields when i put <header 2> without <header 1> before, ez replace it with <header 1>... in my design i have already <h1> and <h2>... in my XML i want <header 2> without <header 1>. Fix this please....
|