> 前端搜索示例:
```
<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}
```