> 前端搜索示例:
```
<form method="get" action="{:url('index/search/index')}">
<input type="text" name="keyword" placeholder="請輸入關鍵字">
<button type="submit">搜索</button>
</form>
```
> 搜索結果頁示例:
當前搜索的關鍵詞變量:{$keyword}
```
{volist name="list" id="vo"}
{$vo.url} // 獲取搜索的文章鏈接
{$vo.title} // 獲取搜索的文章標題
{$vo.title|highlight|raw} // 獲取當前搜索的文章高亮標題,不用高亮可用 {$vo.title}
{/volist}
{if empty($list)}
<h2 class="text-center">暫無數據</h2>
{/if}
<!--分頁-->
{$pages|raw}
```