publiccms中将推荐页的内容显示在页面片段中

Posted 穆雄雄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了publiccms中将推荐页的内容显示在页面片段中相关的知识,希望对你有一定的参考价值。

遍历的代码如下:



<#list page.list>
    <ul>
    <#items as a>
        <li>
            <figure>
                <!-- $a.itemType! : $a.itemId! ,place/redirect:count and 301 jump to a.url,place/click:count and 302 jump to a.url-->
                <a href="$site.dynamicPathplace/redirect?id=$a.id!" target="_blank"><img src="$a.cover!"></a>
                <figcaption><a href="$a.url!" target="_blank">$a.title!</a>($a.clicks!)</figcaption>
                扩展字段:<#assign attribute=getPlaceAttribute(a.id)/>
                 $getPlaceAttribute(a.id).lifeteam_jieshao!?no_esc
            </figure>
        </li>
    </#items>
    </ul>
</#list>



以上是关于publiccms中将推荐页的内容显示在页面片段中的主要内容,如果未能解决你的问题,请参考以下文章

最全最详细publiccms常用的代码片段

在 Asp.NET 中将 CSS 应用于内容页面

从另一个片段返回时如何在视图页面中显示片段?

HTML分页,显示分页页面内容

如何在android中将json数据加载到片段中

用java写的分页,数据有12条,每页显示2条,结果页面只有两页的内容。