> 特別注意:在詳情頁中不需要調用標簽 直接可以使用字段輸出
| 字段名稱 | 說明 | 字段類型 |
| --- | --- | --- |
| id | 導航id | 數字 |
| cid | 導航列表id | 數字 |
| title| 標題 | 輸入框 |
| hits| 文章瀏覽量 | 數字 |
| keywords | SEO關鍵詞 | 輸入框 |
| description| SEO描述 | 多行文本 |
| content | 文章內容 |編輯器|
| create_time | 發布時間 |日期和時間 |
| update_time | 更新時間 |日期和時間 |
| 后臺查看模型字段 | 更多模型字段(視需求自行添加) |--- |
> 調用內容頁數據示例:
> 調用變量為 $info
```
{$info.title} // 獲取標題
{$info.content|raw} // 獲取內容,如果調用不正常,請使用 {$info.content|raw|htmlspecialchars_decode}
{$info.create_time|date="Y-m-d"} // 設置內容發布時間為日期 2020-10-1,不設置可直接 {$info.create_time}
```
> 調用當前內容【標簽】示例:
```
{notempty name="info.tags"} // 判斷標簽是否有值
{volist name=":explode(',',$info.tags)" id="vo"}
<a href="{:url('index/tags/index',['tag'=>$vo])}">{$vo}</a> // 獲取標簽
{/volist}
{/notempty}
```
> 調用當前內容的多圖【標簽】示例:
```
{notempty name="info.imgs"} // 判斷多圖字段imgs是否存在,imgs只是例子,請更改成自己的多圖字段
{volist name=":explode(',',$info.imgs)" id="vo"}
<img src="{$vo}"> // 顯示圖片
{/volist}
{/notempty}
```