[Zope] Newbie question

Kevin Dangoor kid@kendermedia.com
Fri, 5 May 2000 13:06:24 -0400


----- Original Message ----- 
From: "Andy McKay" <AndyM@activestate.com>
To: <zope@zope.org>
Sent: Friday, May 05, 2000 12: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>
> 
> It doesnt work. Whats the correct syntax?

There is a proposal to start accepting this kind of syntax... but for now:

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

is one way to do it.

Kevin