Typo3 - 多页面模板
我对 Typo3 很陌生,我有一个非常基本(不是说愚蠢)的问题:是否可以有多个页面模板,或者只能有一个模板?
我需要做的是让不同的模板调用不同的脚本,因为显然使用相同的模板调用所有脚本似乎会产生冲突。
感谢您的帮助!
简
I am very new to Typo3, and I have a very basic (not to say dumb) question: is it possible to have multiple page templates or can you only have one template?
What I need to do is have different templates call different scripts because apparently having the same template call all of them seems to create conflicts.
Thank you for your help!
Jane
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 TypoScript,您可以在模板中包含任意数量的脚本。
您甚至可以想象以下页面树:
-Home
--第1页
--第2页
---A页
---B页
--第3页
您可以为首页设置特定的模板,该模板将应用于所有页面。但您可以为第 3 页设置完全不同的模板,并且它仅适用于该页面。您还可以将稍微不同的模板应用于页面 2,覆盖特定值(页面背景、CSS 包含等),并且它也将应用于页面 A 和页面 B。
Using TypoScript, you can include any number of scripts in your template.
You can even imagine the following page tree:
-Home
--Page 1
--Page 2
---Page A
---Page B
--Page 3
You can set a certain template for the homepage, and it will apply to all pages. But you can set a completely different template for page 3, and it will only apply to that page. You can also apply a slightly different template to page 2, overriding specific values (page background, CSS inclusion, etc), and it will apply to Page A and Page B as well.
是的,您可以在一个网站上拥有许多不同的模板。实际上每个页面都可以有自己的模板。您可能有兴趣查看 templavoila,因为它非常图形化,一旦设置完毕,您就可以轻松地在 Typo3 后端内的模板之间进行更改。
教程
另一种方法是使用原始的 TypoScript模板并不困难,但需要一点 TypoScript 理解。
TypoScript 模板
您可以以任何方式在不同的模板之间进行选择。
yes, you can have many different templates on a site. Actually each single page can have its very own template. You might be interested in checking out templavoila since its very graphical and once you got it set up, you can easily change between templates within the Typo3 backend.
Tutorials
An alternative would be to use the original TypoScript templates which is not difficult yet requires a bit of TypoScript understanding.
TypoScript Templates
In any way you can chose between different templates.