我想在我的TYPO3網站的所有頁面中顯示相同的頁腳內容。接下來是流體模板概念。我創建了3個模板。如何將頁面內容插入到TYPO3的默認模板中?
1.default template(main.html)
2.content template
3.allpage_content template(which need to show in all pages)
也希望這些內容可編輯的富文本Editor.So我創建了一個名爲頁面頁腳和調用後端佈局(allpage_content.html)。
對於:
lib.footer = COA
lib.footer {
10 = CONTENT
10 {
table = tt_content
select.where = colPos = 10
select.orderBy = sorting
select.pidInList = 15
}
}
page.100 = TEMPLATE
page.100.template = FILE
page.100.template.file = fileadmin/templates/main.html
page.100.workOnSubpart = DOCUMENT_BODY
page.100.marks.content < lib.footer
除此之外後端的佈局也與真正的前臺模板連接
footer_left < styles.content.get
footer_left.select.where = colPos = 10
謝謝。我們應該添加列的位置,如: - 「select.where = colPos = 0,1,2,3」我的意思是多於一個列位置 – sherin
是的。 colPos = 0爲正常列,= 1爲左列,= 2爲右列,= 3爲邊界 –
我的意思是多於一個列位置像這樣select.where = colPos = 0,1,2,3 – sherin