首页模板一般为 index.html(分站可能用 index_city.html)。
| 变量 | 说明 |
|---|---|
| $banners | 轮播图列表 |
| $about | 关于/简介模块数据 |
| $product_root / $products | 产品栏目与列表 |
| $product_tabs | 产品分类 Tab(含 list) |
| $case_root / $cases | 案例 |
| $news_root / $news | 新闻 |
轮播示例
{volist name="banners" id="b" key="k"}
<div class="slide">
<img src="{$b.image}" alt="{$b.title}">
<a href="{$b.url}">{$b.title}</a>
</div>
{/volist}
新闻列表
{volist name="news" id="n"}
<a href="{$n.url}">{$n.title}</a>
<time>{$n.publish_time|date='Y-m-d'}</time>
{/volist}