如何将页面内容插入TYPO3中的默认模板?

时间:2013-02-01 09:44:26

标签: templates content-management-system typo3 wiki typoscript

我想在TYPO3网站的所有页面中显示相同的页脚内容。接下来是流体模板概念。我创建了3个模板。

   1.default template(main.html)
   2.content template
   3.allpage_content template(which need to show in all pages)

还希望在Rich Text Editor中可以编辑该内容。因此,我创建了一个名为footer的页面并调用后端布局(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

2 个答案:

答案 0 :(得分:3)

请尝试下面的错别字:

lib.footer = COA
lib.footer {
10 = RECORDS
 10{
  tables = tt_content
  source = 15 #footer page id
 }
}

OR

lib.footer = COA
lib.footer {
 10 = CONTENT
 10 {
 table = tt_content
  select.where = colPos = 0     #column position - 0-normal, 1-left, 2-right, 3-border
  select.orderBy = sorting
  select.pidInList = 15  #footer page id
 }
}

答案 1 :(得分:1)

我是这样做的。 您可以使用临时对象(它们不会持久存在)。 在下面的示例中,仅使用了bodytext(RTE字段),没有其他内容。 内容通过lib.parsefunc_RTE呈现,因此呈现链接。 我选择只选择一个内容元素(select.max),但这取决于你

temp.footer_adr = CONTENT
temp.footer_adr {
   table = tt_content
   select.pidInList = 47
   select.languageField = sys_language_uid
   select.max = 1
   select.begin = 1
   select.selectFields = bodytext
   renderObj=TEXT
   renderObj{
      required=1
      wrap=|
      field=bodytext
      parseFunc = < lib.parseFunc_RTE
  }
}

page.70 = TEMPLATE
page.70 {
    template = FILE
    template.file = fileadmin/templates/main/tmpl/footer.html
    marks {
            FOOTER_ADR < temp.footer_adr
    }
}