index.html 775 Bytes
<!--
    JSON数据组成说明(有广告且有通栏):
    topItem1    //广告之前的两个碎片
    topItem2    //广告与通栏之间的碎片
    bottomItem  //通栏之后的广告
    advert      //广告的结构体
    centerBanner//通栏的结构体
    pager       //分页结构体
-->
{{> layout/header }}
{{> default/channel_banner }}
<div class="content {{# channel}}content-{{.}}{{/ channel}} clearfix">
    {{# topItems1}}
        {{> channel/item}}
    {{/ topItems1}}
    {{> channel/advert}}
    {{# topItems2}}
        {{> channel/item}}
    {{/ topItems2}}
    {{> default/default_advt}}
    {{# bottomItems}}
        {{> channel/item}}
    {{/ bottomItems}}
    
    {{> channel/followus}}
</div>

{{> channel/pager}}
{{> layout/footer }}