栏目列表页模板如 list.html、list_product.html 等。
| 变量 | 说明 |
|---|---|
| $category | 当前栏目 |
| $breadcrumb | 面包屑数组(name/url) |
| $children | 子栏目 |
| $list | 当前页文档列表 |
| $page / $total / $page_size | 分页信息 |
| $page_url | 分页基础 URL |
面包屑
<a href="/">首页</a>
{volist name="breadcrumb" id="bc"}
/ <a href="{$bc.url}">{$bc.name}</a>
{/volist}
列表
{volist name="list" id="v"}
<a href="{$v.url}">
<img src="{$v.thumb}" alt="">
<h3>{$v.title}</h3>
</a>
{/volist}
{empty name="list"}<p>暂无内容</p>{/empty}