[Zope] Newbie question

Michael Bernstein webmaven@lvcm.com
Fri, 05 May 2000 16:59:36 +0000


Andy McKay wrote:
> 
> 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>

Try:

[untested]

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

Michael Bernstein.