我使用构建器扩展创建了一个基本模板。在我设置的页面属性Backend layout
中fuildpages
,我现在在后端看到构建器扩展创建的 2 列:
<f:section name="Configuration">
<flux:form id="standard">
<!-- Insert fields, sheets, grid, form section objects etc. here, in this flux:form tag -->
</flux:form>
<flux:grid>
<!-- Edit this grid to change the "backend layout" structure -->
<flux:grid.row>
<flux:grid.column colPos="0" colspan="3" name="main" />
<flux:grid.column colPos="1" name="right" />
</flux:grid.row>
</flux:grid>
</f:section>
<f:section name="Main">
<h1>I am a page template!</h1>
<p>
My template file is EXT:my_template/Resources/Private/Page/Standard.html.
</p>
<div style="float: left; width: 75%;">
<h2>Content main</h2>
<v:content.render column="0" />
</div>
<div style="float: left; width: 25%;">
<h2>Content right</h2>
<v:content.render column="1" />
</div>
</f:section>
但是在后端,这些列没有名称“main”和“right”。
在typo3 6.2 中,这与构建器创建的基本模板一起使用。我错过了什么吗?
还有一个问题:默认后端布局是否有 sysext "Left" "Normal" "Right" "Border"
?我想在那里看它是如何完成的,但我找不到它。