我想找到一种方法来在一个模板中调用每个页面的[[*content]]
。我的意思是仍然是动态的东西,以便我可以添加或删除页面,它会出现在菜单中而不会修改任何内容。
http://fr.wix.com/website-template/view/html/tokyo-design
我想在modx中使用这种导航。也许getresource是答案,但我需要显示如下内容:
<div>[[*contentpage1]]</div>
<div>[[*contentpage2]</div>
<div>[[*contentpage3]]</div>
...
有人可以帮我这个吗?
谢谢
答案 0 :(得分:2)
听起来你走在正确的轨道上,使用GetResources应该可以为你做到这一点:
“
[[!getResources:default=``? &parents=`0` &includeContent=`1` &tpl=`contentoutput`]]
“
然后创建一个名为“contentoutput”的新块,其中包含您要输出的代码,例如
“
<div>
[[+content]]
</div>
“