| Monday 30 January 2006 1:01:49 am 
                                                                
                                                                 Hi. When I edit a template and add i.e.  
<a href="http://www.trav24.no/index.php/portal/div_pages/v65_champion_redirect.html"><div><img src={"anonnsorer/v65_champion.gif"|ezimage} /></div></a>
Then the system auto loop it, for every article it tried to present. 
If you look at www.trav24.no , then you can see that the same image appears on top ofeach article preview. Is there any way to just include it once?
 I tried the include_once, but Exponential does not seem to accept that. 
I need it to be just presented once, on the top. Do I have to manually edit the pagelaoyout.tpl file to make that happend? Or can it be done in the
 template system?
 My line view news articles looks like this atm: 
 <center><a href="http://www.trav24.no/index.php/portal/div_pages/v65_champion_redirect.html"><div><img src={"anonnsorer/v65_champion.gif"|ezimage} /></div><br></a></center>
<table width="" class="latest_news">
   <tr>
       <td colspan="2">
           <div class="headline_link">
               <a href={$node.url_alias|ezurl}>
                   {attribute_view_gui attribute=$node.object.data_map.title}
               </a>
           </div>
       </td>
   </tr>
   <tr>
       <td>
           {attribute_view_gui attribute=$node.object.data_map.intro}
<p><a href={$node.url_alias|ezurl}>{"Read more..."|i18n("design/base")}</a></p>
       </td>
       <td valign="top">
           <a href={$node.url_alias|ezurl}>
               {attribute_view_gui attribute=$node.object.data_map.image image_class="articlethumbnail"}
           </a>
       </td>
   </tr>
</table>
Thanks for the help. |