Modx:在一个模板中显示所有页面

时间:2013-02-18 13:45:25

标签: modx modx-revolution modx-templates

我想找到一种方法来在一个模板中调用每个页面的[[*content]]。我的意思是仍然是动态的东西,以便我可以添加或删除页面,它会出现在菜单中而不会修改任何内容。

http://fr.wix.com/website-template/view/html/tokyo-design

我想在modx中使用这种导航。也许getresource是答案,但我需要显示如下内容:

<div>[[*contentpage1]]</div>
<div>[[*contentpage2]</div>
<div>[[*contentpage3]]</div>
...

有人可以帮我这个吗?

谢谢

1 个答案:

答案 0 :(得分:2)

听起来你走在正确的轨道上,使用GetResources应该可以为你做到这一点:

[[!getResources:default=``? &parents=`0` &includeContent=`1` &tpl=`contentoutput`]]

然后创建一个名为“contentoutput”的新块,其中包含您要输出的代码,例如

<div>
[[+content]]
</div>