[Zope] Newbie question re referring to items
Lennart Regebro
lennart@regebro.nu
Mon, 11 Feb 2002 17:46:51 +0100
> Given a folder structure similar to the following:
>
> /
> test
> images
> content
>
>
> How does a dtml document in /test/content obtain an image from the
> /test/images folder, without using the <img...> tag. I want to be able to
> get it using <dtml-var ...>
<dtml-var images.imagename>
As you see, you can't use dots in the imagename if you use this syntax,
which isn't a proble,. If you for some reason must have dots in the
imagename, this is also doable, but it gets more complex then, so thats step
2. :-)