[Typo3] Cross platform sites
JoH
info at cybercraft.de
Tue Feb 8 12:46:47 CET 2005
> Is it possible to base multiple sites on the same content, so that for
> instance I could create two sites with different templates but with
> the same content from the database?
>
>
>
> I need this for a cross platform site where the same core content is
> delivered for PC, Mobile and TV based browsers, but design wise, ad
> wise etc. the sites will be much too different for a "one site
> multiple stylesheet" solution.
You can use conditions for that ...
[system = win]
temp.content = COA
temp.content {
# my windows content here
}
[system = mac]
temp.content = COA
temp.content {
# my mac content here
}
[device = wap]
temp.content = COA
temp.content {
# my wap content here
}
[global]
page = PAGE
page.10 < temp.content
Have a look at TSref --> conditions here:
http://typo3.org/documentation/document-library/doc_core_tsref/Condition_reference/
Joey
More information about the TYPO3-english
mailing list