1

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

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

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

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

有人可以帮我解决这个问题吗?

谢谢

4

1 回答 1

2

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

"

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

"

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

"

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

"

于 2013-02-18T14:07:12.363 回答