Typo3:子页面模板未加载 [英] Typo3: Sub-page Template not loading

查看:102
本文介绍了Typo3:子页面模板未加载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

也许我只是想念些东西……显然,到目前为止,我在Google上没有任何帮助.

Maybe I'm just missing something ... obviously, and so far I've googled up nothing to help.

问题似乎很简单,我只是想在根目录树中为页面加载一个稍有不同"的页面.所有其他页面共享Root模板,但是我需要使这一页面具有完全不同的内容和略有不同的标题,因此需要第二个模板.

the issue, seems simple, I'm just trying to load a "slightly" different for one Page in my Root tree. All other pages share the Root template, but I need for this one page to have a completely different kind of content and a slightly different header, thus the need for a secondary template.

我为此做了以下事情:

# Default PAGE object:
page = PAGE

# Define the template
page.10 = TEMPLATE

# Our template is a file
page.10.template = FILE

# Our template file is fileadmin/template/media/media.html
page.10.template.file = fileadmin/template/media/media.html

但是所有这些导致的也是页面加载时完全空白的HTML.没有错误,什么都没有!页面源刚刚出现:

But all this leads too is a completely blank HTML upon page load. No errors, no nothing! The page source just comes up:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <!-- 
        This website is powered by TYPO3 - inspiring people to share!
        TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL.
        TYPO3 is copyright 1998-2013 of Kasper Skaarhoj. Extensions are copyright of their respective owners.
        Information and contribution at http://typo3.org/
    -->
    <link rel="shortcut icon" href="http://192.168.206.11/introductionpackage-6.1.0/fileadmin/template/media/favicon.ico" type="image/x-ico; charset=binary">
    <link rel="icon" href="http://192.168.206.11/introductionpackage-6.1.0/fileadmin/template/media/favicon.ico" type="image/x-ico; charset=binary">
    <title>Media</title>
    <meta name="generator" content="TYPO3 6.1 CMS">

    <link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_15a396fd13.css?1369410324" media="all">
    <link rel="stylesheet" type="text/css" href="fileadmin/template/style.css?1369398600" media="all">
</head>
    <body>
    </body>
</html>

所以,我想的问题是,如何让单个Page具有单独的模板?

So, I suppose the question is, how can I get a single Page to have a separate template?

推荐答案

不知道这是否正确,但这是我发现要做的.

Don't know if this is correct, but this is what I found to do.

我制作了模板并将其放在特定的文件夹中.然后我做了以下工作,就可以了!

I made my template and placed it in a specific folder. Then I did the following and it works!

# Default PAGE object:
# page = PAGE
page.10 = NULL

page.includeJSlibs.jwplayer = 1
page.includeJSlibs.jwplayer = fileadmin/template/js/jwplayer/jwplayer.js

# Define the template
page.20 = TEMPLATE

# Our template is a file
page.20.template = FILE

# Our template file is fileadmin/template/media/media.html
page.20.template.file = fileadmin/template/media/media.html

# Insert shortcut icon in the head of the website
page.shortcutIcon = fileadmin/template/media/favicon.ico

# Insert stylesheet in the head of the website
# page.stylesheet = fileadmin/template/style.css

# Work with the subpart "DOCUMENT"
# page.20.workOnSubpart = DOCUMENT

######################################################
#
# Configuration of SUBPARTS
#
######################################################

# Define the subparts, which are inside the subpart DOCUMENT
page.20.subparts {

}

######################################################
#
# Configuration of MARKERS
#
######################################################

# Define the markers inside the subpart DOCUMENT
page.20.marks {
  # Load the logo
  LOGO = IMAGE
  LOGO.file = fileadmin/templates/images/logo.png
  LOGO.altText = Mountain Top

  # Menu 1 cObject
  menu_1 = HMENU
}

# First level menu-object, textual
page.20.marks.menu_1.1 = TMENU
page.20.marks.marks.menu_1.1 {
  # Normal state properties
  NO.allWrap = <li> | </li>
  # Enable active state and set properties:
  ACT = 1
  ACT.allWrap = <li class="active"> | </li>
}

# Second level menu-object, textual
page.20.marks.menu_1.2 = TMENU
page.20.marks.menu_1.2 {
  # Normal state properties
  NO.allWrap = <div class="menu1-level2-no"> | </div>
  # Enable active state and set properties:
  ACT = 1
  ACT.allWrap = <div class="menu1-level2-act"> | </div>
}

这篇关于Typo3:子页面模板未加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆