常用變量:
$cat //當前欄目的欄目信息
$cat['paths'] //用于存儲面包屑導航 id 集合
$cat['id'] //欄目id
$cat['title'] //欄目標題
$cat['subtitle'] //欄目副標題
$cat['children'] //下級欄目 id 集合
$cat['pid'] //上級欄目 id (如果不存在上級則為 0)
$cat['dirnames'] //當前欄目的目錄名(用于拼接欄目 url)
$cats //當前網站所有欄目的信息,以欄目id為下標存儲
$list //當前列表頁的文章內容集合
$pagehtml //當前列表頁的分頁代碼
面包屑導航范例
<p class="pox"> 當前位置:<a href="/">網站首頁</a> {foreach $cat['paths'] as $v}<em>></em><a href="/portal/{$cats[$v]['dirnames']}">{$cats[$v]['title']}</a>{/foreach} </p>
文章列表內容范例
<ul class="cl"> {foreach $list as $v} <li><a href="/portal/{$cats[$v['catid']]['dirnames']}/article-{$v['aid']}.html" target="_blank" class="cl"> <div class="n1">{img src=$v['pic'] width="210" height="124" alt=$v['title']}</div> <div class="n2"> <h3 class="s">{$v['title']}</h3> <p>{$v['summary']}</p> <div class="n3 cl"><span>{date style="Y-m-d" time=$v['create_time']}</span><em>{$cats[$v['catid']]['title']}</em><strong>{$v['views']}</strong></div> </div> <div class="n4"></div> </a></li> {/foreach} </ul> {$pagehtml}
URL規(guī)范
文章列表頁
/portal/{dirnames}/
文章內容頁
/portal/{dirnames}/article-{aid}.html
文章封面調用方法:
{img src=$v['pic'] width="210" height="124" alt=$v['title']}
(記憶方法:把 img 標簽的 尖括號 改成 花括號)
列表頁可用的 html 快捷標簽
{html val="button_publish"} //可選參數(shù)為 class
和舊版本區(qū)別
原文章發(fā)布日期變量 $v['dateline'] 改為 $v['create_time']