ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
``` ~~~ /view [模板目录] │ ├─default -------------------[默认模板] ├─├─common ------------------[公共模版块] ├─│ comment.html ----------[评论模版] ├─│ downloaditem.html -----[] ├─│ fields.html -----------[] ├─│ index_list.html -------[] ~~~ public function index() { Config::set('cms.title', Config::get('cms.title') ? Config::get('cms.title') : __('Home')); if ($this->request->isAjax()) { $this->success("", "", $this->view->fetch('common/index_list')); } return $this->view->fetch('/index'); } ~~~ ├─│ item_download.html ----[] ├─│ item_news.html --------[] ├─│ item_product.html -----[] ├─│ item.html -------------[] ├─│ layout.html -----------[] ├─│ sidebar.html ----------[] │ channel_download.html ---[付费阅读栏目首页]=》就是封面 │ channel_news.html -------[新闻栏目首页] =》就是封面 │ channel_product.html ----[产品栏目首页]=》就是封面 封面的效果如下就是这样的 │ channel.html ------------[栏目首页] │ diyform.html ------------[自定义表单] │ index.html --------------[网站首页] │ list_download.html ------[付费阅读列表页] │ list_news.html ----------[新闻列表页] │ list_product.html -------[产品列表页] │ list.html ---------------[列表页] 列表页的效果如下 │ page.html ---------------[单页] │ search.html -------------[搜索页] │ show_download.html ------[付费阅读内容页] │ show_news.html ----------[新闻内容页] │ show_product.html -------[产品内容页] │ show.html ---------------[内容页] │ tags.html ---------------[标签页] ~~~ ``` ![](https://img.kancloud.cn/bd/27/bd27aeb6651af36db6dbcdeee1c25661_1178x812.png) ![](https://img.kancloud.cn/4e/49/4e49aaafbbf7821e8f79efc4de6dd5b5_771x429.png)