我几天前开始使用TYPO3 8.7.1 - 没有TYPO3的先前经验。
我正在使用t3editor创建第一个测试模板,使用官方页面上提供的指南,这是针对版本7.这两个版本之间的模板存在巨大差异,因为我我只得到一个空白页面,甚至我的源代码都没有在body标签之间显示任何内容。
# Default PAGE object:
page = PAGE
# Define that we use a Template and where it is located
page.10 = TEMPLATE
page.10 {
template = FILE
template.file = fileadmin/tmp/home.html
}
# Insert shortcut icon in the head of the website
page.shortcutIcon = fileadmin/img/favicon.ico
# Insert stylesheet in the head of the website
page.includeCSS.base = fileadmin/css/style.css
就此而言,我有另一个问题。我似乎无法找到t3editor使用的突出显示颜色的规律性,但同时我在此代码段中找不到任何错误。
有人可以帮忙吗?
祝你好运
答案 0 :(得分:0)
FLUIDTEMPLATE:
的示例在TypoScript设置中:
page = PAGE
page {
10 = FLUIDTEMPLATE
10 {
template = FILE
template.file = fileadmin/Templates/Html/Page/Templates/Default.html
layoutRootPath = fileadmin/Templates/Html/Page/Layouts/
variables {
content < styles.content.get
}
}
}
fileadmin /模板/ HTML /页/布局/ default.html中
<f:render section="Main" />
fileadmin /模板/ HTML /页/模板/ default.html中
<html>
<head>
<title>Page Template Default</title>
</head>
<body>
<f:layout name="Default"/>
<f:section name="Main">
<f:format.raw>{content}</f:format.raw>
</f:section>
</body>
然后插入内容并显示页面。