使用 flux:grid 和 v:content.render 时是否需要添加一些 Typoscript?
Do you need to add some Typoscript when using flux:grid together with v:content.render?
我正在尝试使用 Fluid 模板来呈现页面。我已经创建了一个扩展文件提供程序和一些看起来正在呈现的页面模板。
很遗憾,我添加到页面的内容不是渲染。
我正在尝试遵循 example in the Flux documentation(双栏页面模板和页面呈现部分)。
我也一直在阅读 Creating Page Template page in the Fluid documentation。
当我这样做时,它正确地使网格布局在 TYPO3 后端可用。
但是,当我 select 页面布局之一,然后添加一些内容时,页面中没有呈现内容。
我是不是漏掉了一步?例如,我需要在这里写一些 Typoscript 吗?文档似乎是 incomplete/unfinished.
我尝试在 Configuration/Typoscript/setup.txt 中添加以下 Typoscript:
page {
10 {
variables {
left < styles.content.get
left.select.where = colPos = 0
right < styles.content.get
right.select.where = colPos = 1
}
}
}
但是没有效果。
您是否添加了 css styled content
或 fluid styled content
的静态模板?
我正在尝试使用 Fluid 模板来呈现页面。我已经创建了一个扩展文件提供程序和一些看起来正在呈现的页面模板。
很遗憾,我添加到页面的内容不是渲染。
我正在尝试遵循 example in the Flux documentation(双栏页面模板和页面呈现部分)。
我也一直在阅读 Creating Page Template page in the Fluid documentation。
当我这样做时,它正确地使网格布局在 TYPO3 后端可用。
但是,当我 select 页面布局之一,然后添加一些内容时,页面中没有呈现内容。
我是不是漏掉了一步?例如,我需要在这里写一些 Typoscript 吗?文档似乎是 incomplete/unfinished.
我尝试在 Configuration/Typoscript/setup.txt 中添加以下 Typoscript:
page {
10 {
variables {
left < styles.content.get
left.select.where = colPos = 0
right < styles.content.get
right.select.where = colPos = 1
}
}
}
但是没有效果。
您是否添加了 css styled content
或 fluid styled content
的静态模板?