[Zope] how can i have my content displayed in 2 different ways ?

Joachim Werner joe@iuveno-net.de
Mon, 7 May 2001 15:53:58 +0200


> bluepage/animals/lion
> redpage/animals/lion
>
> can i do that ? if yes, how ? and does it work with subfolders ?

Hi!

Ever heard about acquisition magic? ;-)

You can just have two different folders "bluepage" and "red page" that
contain the different layout. Your folder hierarchy could look like that:

ROOT
|_ bluepage
|_ redpage
|_ animals
        |_ lion
        |_ elephant

Then you can just do "redpage/animals/elephant"! The animals folder is
acquired from the root when it is called in redpage, so this works!

Joachim.