在content-children之后插入标记

时间:2012-04-18 09:37:03

标签: plone diazo

我正在尝试在页面中插入自定义标记

这应该有效吗?

<after css:content-children="#viewlet-below-content-body">
   <a href="@@historyview">History</a>
</after>

似乎只有替换允许我插入/替换自定义标记

<replace css:content-children="#viewlet-below-content-body">
   <a href="@@historyview">History</a>
</replace>

2 个答案:

答案 0 :(得分:2)

Diazo不支持仅含有content / content-children的前/后规则,您只能删除或替换。也许在将来的版本中。

答案 1 :(得分:1)

如何将自己的标记附加到主题(同时复制/替换子项):

<append css:theme="#theme-id-for-viewlet-below-content-body">
   <a href="@@historyview">History</a>
</append>