[Zope] R: [Zope] Newbie question

Marcel Preda marcel@punto.it
Fri, 5 May 2000 19:08:21 +0200


----- Original Message ----- 
From: Andy McKay <AndyM@activestate.com>
To: <zope@zope.org>
Sent: Friday, May 05, 2000 6:14 PM
Subject: [Zope] Newbie question


> I have an image I reference in dtml as:
> <dtml-var Man.gif>
> 
> I move it to an images folder and then try to reference as:
> <dtml-var /images/Man.gif>

Use:
<dtml-with images>
<dtml-var Man.gif>
</dtml-with>

READ "dtml WITH Tag" in DTML-Reference


Marcel