plone.app.theming中的多个主题

时间:2012-04-28 20:04:04

标签: themes plone diazo

我正在尝试将不同的html(主题)应用到我的首页(index.html),而我的所有其他页面将具有相同的主题(index_in.html)。我正在尝试这种方式,并想知道为什么它不起作用:

摘自我的rules.xml:

    ...
    <theme href="index_in.html" css:if-content="#visual-portal-wrapper" />

    <rules css:if-content="#visual-portal-wrapper">

    <theme href="index.html" if-path="front-page"/>
    <theme href="index_in.html" />
    ...

谢谢

2 个答案:

答案 0 :(得分:2)

...试

<rules css:if-content="#visual-portal-wrapper">
<theme href="index.html" if-path="front-page" />
<theme href="index_in.html" />
...
</rules>

答案 1 :(得分:1)

如果首页有#visual-portal-wrapper,那么第一个也会与之匹配并被使用。条件主题按照它们出现的顺序进行尝试,并使用第一个匹配的主题。